From: Eric P. <de...@us...> - 2004-08-12 18:28:54
|
dep4b 04/08/12 11:28:47 Modified: findbugs plugin.jelly project.xml findbugs/xdocs changes.xml findbugs/src/plugin-test project.xml Log: Ready for 0.8.4 Revision Changes Path 1.7 +4 -2 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- plugin.jelly 29 Jul 2004 18:09:50 -0000 1.6 +++ plugin.jelly 12 Aug 2004 18:28:29 -0000 1.7 @@ -90,8 +90,10 @@ output="xdocs" outputFile="${maven.build.dir}/findbugs-raw-report.xml"> - <j:forEach var="lib" items="${pom.artifacts}"> - <auxClasspath path="${lib.path}"/> + <j:forEach var="lib" items="${pom.artifacts}"> + <j:if test="${lib.type =='jar'}"> + <auxClasspath path="${lib.path}"/> + </j:if> </j:forEach> <sourcePath path="${basedir}/src/java" /> <j:if test="${sourcesPresent}"> 1.13 +5 -5 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- project.xml 9 Aug 2004 15:30:22 -0000 1.12 +++ project.xml 12 Aug 2004 18:28:30 -0000 1.13 @@ -6,7 +6,7 @@ <id>maven-findbugs-plugin</id> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.8.3-SNAPSHOT</currentVersion> + <currentVersion>0.8.4</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -55,25 +55,25 @@ <dependency> <groupId>findbugs</groupId> <artifactId>findbugs</artifactId> - <version>0.8.2</version> + <version>0.8.4</version> <url>http://findbugs.sourceforge.net/</url> </dependency> <dependency> <groupId>findbugs</groupId> <artifactId>findbugs-ant</artifactId> - <version>0.8.2</version> + <version>0.8.4</version> <url>http://findbugs.sourceforge.net/</url> </dependency> <dependency> <groupId>findbugs</groupId> <artifactId>findbugs-coreplugin</artifactId> - <version>0.8.2</version> + <version>0.8.4</version> <url>http://findbugs.sourceforge.net/</url> </dependency> <dependency> <groupId>findbugs</groupId> <artifactId>findbugs-bcel</artifactId> - <version>0.8.2</version> + <version>0.8.4</version> <url>http://findbugs.sourceforge.net/</url> </dependency> <dependency> 1.10 +7 -1 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- changes.xml 31 Jul 2004 11:42:48 -0000 1.9 +++ changes.xml 12 Aug 2004 18:28:30 -0000 1.10 @@ -6,7 +6,13 @@ </properties> <body> - <release version="0.8.3-SNAPSHOT" date="in cvs"> + <release version="0.8.4-SNAPSHOT" date="in cvs"> + <action dev="epugh" type="update"> + Use findbugs version 0.8.4. + </action> + <action dev="epugh" type="fix" issue="1003083"> + Only include jar dependencies. + </action> <action dev="epugh" type="add"> Add example Findbugs report to site docs. </action> 1.4 +10 -1 maven-plugins/findbugs/src/plugin-test/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/src/plugin-test/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- project.xml 29 Jul 2004 18:09:50 -0000 1.3 +++ project.xml 12 Aug 2004 18:28:46 -0000 1.4 @@ -20,7 +20,16 @@ </roles> </developer> </developers> - + + <dependencies> + <!-- Purely used for testing --> + <dependency> + <groupId>xstream</groupId> + <artifactId>xstream-src-tar-file</artifactId> + <jar>xstream-0.1-src.zip</jar> + <type>distribution</type> + </dependency> + </dependencies> <build> <sourceDirectory>${basedir}/src/java</sourceDirectory>s </build> |