Hi,
I use findbugs and javadoc as reporting plugins. Both trigger the
compile lifecycle when running "mvn site". How do I disable this trigger
or at least how to I have only ONE compile lifecycle as this is a real
long running phase.
Normally I run "mvn deploy" before "mvn site" so that all sources are
already compiled at that stage.
For the records the current plugin definition:
<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<xmlOutput>true</xmlOutput>
<findbugsXmlOutput>true</findbugsXmlOutput>
</configuration>
</plugin>
</plugins>
</reporting>
Thanks for your support.
Regards
Thomas
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]