Where should be placed maven-compiler-plugin declaration: in or ?

后端 未结 2 1184
暖寄归人
暖寄归人 2020-12-18 01:55

I have a multi-module maven project, and I want to cause all my submodules to use maven-compiler-plugin specified in root pom.xml. Where I should p

相关标签:
2条回答
  • 2020-12-18 02:47

    It depends on what you're after. If you include them under the plugins section, they will execute for all POMs...including the parent. If you only want child POMs to execute the plugin goals, then you should place them under pluginManagement. However, in that case, you will have to enable them in each child POM.

    That said, the easiest thing to do is try under plugins first. If there's no build failure, then you're good to go. Otherwise, you will need to move some or all over to pluginManagement.

    0 讨论(0)
  • 2020-12-18 02:48

    These 2 sections (plugins and pluginManagement) have slightly different purposes.

    The first one (plugins) is used to specify the build process of your project (and all of the child projects that inherit from the parent project). If you include some plugin into this section, it will be executed in each of the child projects regardless of its type.

    The second one (pluginManagement) is used to specify common plugin settings for all of the projects that inherit from the parent project (for example, plugin version and configuration).

    Speaking of the 2 plugins that you've mentioned. maven-compiler-plugin is a default plugin that will be executed whether you specify it or not. It makes sense to include it in pluginManagement and specify its configuration there. maven-release-plugin, however, is not bound to any lifecycle phase by default. So if you'd like it to be executed in all of your child projects, you'll have to add it to plugins section.

    0 讨论(0)
提交回复
热议问题