Maven2 jardiff plugin
You know clirr? It can be used to generate a report of what has changed in between two releases by directly comparing the jars. Unfortunately it is under LGPL/GPL license (and the maven support was never really good). A while ago I came across an alternative jardiff which is under BSD license …but it was missing support for maven2.
Well, that’s fixed now :) I’ve just submitted the plugin to the mojo project on codehaus.
All you have to do is to define the plugin and the version number of the previous release in your pom.
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>maven-jardiff-plugin</artifactId>
<configuration>
<oldVersion>5.1</oldVersion>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>