I have a Maven project with multiple overlapping profiles. I want to display the active profiles at the beginning of every build. So I put the following into the pom.xml <build>
section:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>display-active-profiles-at-start-of-build</id>
<phase>validate</phase>
<goals>
<goal>active-profiles</goal>
</goals>
</execution>
</executions>
</plugin>
The problem is that the plugin executes multiple times during the build:
validate
phase).jar:jar
executes.source:jar
/ during pre-integration-test
(?), when Jetty is being started.Similar results when specifying <phase>initialize</phase>
. Is there a way to get this to only run at the beginning of the build?
The reason it executes several times, is because one of your plugins is executing another lifecycle as part of its mojo.
source:jar
definitely does it, as specified by its documentation.
Invokes the execution of the lifecycle phase generate-sources prior to executing itself.
jar:jar
usually does not, but it may be that you have another plugin that spins off another lifecycle.
In case of generation of source jar, you generally don't need another lifecycle, and plugin authors recognized this by implementing jar-no-fork
mojo.
You may substitute it for default jar
mojo, by following steps described here -> http://maven.apache.org/plugins/maven-source-plugin/usage.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With