From: Eric P. <de...@us...> - 2005-03-18 22:50:06
|
dep4b 05/03/18 14:49:57 Modified: findbugs plugin.jelly project.xml findbugs/xdocs changes.xml Added: findbugs/src/plugin-resources/jars findbugs-ant.jar findbugs.jar coreplugin.jar findbugsAnnotations.jar bcel.jar Log: Upgrade to 0.8.6. Take a page from javancss plugin and just include the jars instead of downloading from ibiblio. Revision Changes Path 1.1 maven-plugins/findbugs/src/plugin-resources/jars/findbugs-ant.jar <<Binary file>> 1.1 maven-plugins/findbugs/src/plugin-resources/jars/findbugs.jar <<Binary file>> 1.1 maven-plugins/findbugs/src/plugin-resources/jars/coreplugin.jar <<Binary file>> 1.1 maven-plugins/findbugs/src/plugin-resources/jars/findbugsAnnotations.jar <<Binary file>> 1.1 maven-plugins/findbugs/src/plugin-resources/jars/bcel.jar <<Binary file>> 1.9 +7 -4 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- plugin.jelly 7 Sep 2004 09:17:18 -0000 1.8 +++ plugin.jelly 18 Mar 2005 22:49:57 -0000 1.9 @@ -66,14 +66,17 @@ <!-- Define a FindBugs task with the rulesets and all jars in the classpath --> <path id="findbugs.classpath"> - <pathelement location="${plugin.getDependencyPath('findbugs:findbugs')}"/> - <pathelement location="${plugin.getDependencyPath('findbugs:findbugs-ant')}"/> - <pathelement location="${plugin.getDependencyPath('findbugs:findbugs-bcel')}" /> + <fileset dir="${plugin.resources}/jars"> + <include name="**/*.jar"/> + <!--exclude name="**/*plugin*.jar"/--> + </fileset> <pathelement location="${plugin.getDependencyPath('dom4j:dom4j')}" /> </path> <path id="findbugs.pluginlist"> - <pathelement location="${plugin.getDependencyPath('findbugs:findbugs-coreplugin')}"/> + <fileset dir="${plugin.resources}/jars"> + <include name="**/*plugin*.jar"/> + </fileset> </path> <ant:taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"> 1.20 +2 -2 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- project.xml 18 Mar 2005 22:16:24 -0000 1.19 +++ project.xml 18 Mar 2005 22:49:57 -0000 1.20 @@ -63,7 +63,7 @@ <!-- licenses section not done yet --> <dependencies> - <dependency> + <!--dependency> <groupId>findbugs</groupId> <artifactId>findbugs</artifactId> <version>0.8.6</version> @@ -86,7 +86,7 @@ <artifactId>findbugs-bcel</artifactId> <version>0.8.6</version> <url>http://findbugs.sourceforge.net/</url> - </dependency> + </dependency--> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> 1.15 +1 -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.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- changes.xml 18 Mar 2005 22:16:24 -0000 1.14 +++ changes.xml 18 Mar 2005 22:49:57 -0000 1.15 @@ -8,7 +8,7 @@ <body> <release version="0.8.6" date="s"> <action dev="epugh" type="update"> - Use findbugs version 0.8.6. + Use findbugs version 0.8.6. Jar's are included as part of the plugin. </action> <action dev="mtorp" type="fix"> Fix jelly script error in checking if a pom.artifacts was a jar file or not. |