The Commons Math build contains an example of Clirr Plugin usage:
http://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk/pom.xml
For more information on Clirr, which http://clirr.sourceforge.net/
This configuration automatically determines the prior release version to compare to by examining the repository metadata.
| No Format |
|---|
<project>
<reporting>
...
<plugins>
...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<minSeverity>info</minSeverity>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
...
<plugins>
...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
</project>
|
