maven中的插件管理
Plugin management in maven
能否请您建议如何在 maven 中进行插件管理。
我必须调用以下代码
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<target>
<ant antfile="${basedir}/build/build.xml">
<target name="${ant.mode}" />
</ant>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
In some of the the submodule in a multi maven project module.
Can you suggest how to integrate this in only selective maven profiles?
Any Help will be appreciated .
有人可以提出任何插件管理的解决方案吗
你把配置放到parent的pluginManagement里。
您可以在需要的每个模块中指定插件(无需配置),或者使用 skip
参数 activate/deactivate 插件。
能否请您建议如何在 maven 中进行插件管理。 我必须调用以下代码
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<target>
<ant antfile="${basedir}/build/build.xml">
<target name="${ant.mode}" />
</ant>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
In some of the the submodule in a multi maven project module.
Can you suggest how to integrate this in only selective maven profiles?
Any Help will be appreciated .
有人可以提出任何插件管理的解决方案吗
你把配置放到parent的pluginManagement里。
您可以在需要的每个模块中指定插件(无需配置),或者使用 skip
参数 activate/deactivate 插件。