Is there a way to force maven to copy resource folder changes incrementally?

后端 未结 5 1976
春和景丽
春和景丽 2021-02-20 17:38

I\'m using Maven 2.2.1 and m2eclipse.

I have two resource folders.

When I save a change to any file in any of the resource folders, the Maven incremental build k

5条回答
  •  [愿得一人]
    2021-02-20 18:13

    There might be an option in the Maven resource plugin configuration to do that but I have not found any. If I were you I would split up the resources and move them out into separate modules that you depend on. Then you just rebuild the module that you changed files in and not the others and things will be much faster..

    I would also try Maven 3.0 that was just released. It is a lot faster and will improve your situation in this and other aspects as well.

提交回复
热议问题