From: Jeff J. <jef...@us...> - 2006-06-24 13:31:28
|
jeffjensen 06/06/24 06:31:26 Modified: findbugs plugin.jelly project.xml plugin.properties findbugs/xdocs properties.xml changes.xml Log: Create 1.3-snapshot; use findbugs-1.0.0; add maven.findbugs.failOnError property. Revision Changes Path 1.14 +1 -1 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- plugin.jelly 3 May 2006 03:50:11 -0000 1.13 +++ plugin.jelly 24 Jun 2006 13:31:26 -0000 1.14 @@ -96,7 +96,7 @@ workHard="${maven.findbugs.workHard}" output="xdocs" outputFile="${maven.build.dir}/findbugs-raw-report.xml" - failOnError="true"> + failOnError="${maven.findbugs.failOnError}"> <j:if test="${context.getVariable('maven.findbugs.jvmargs') != null}"> <ant:setProperty name="jvmargs" value="${maven.findbugs.jvmargs}" /> 1.38 +9 -4 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- project.xml 5 Jun 2006 01:29:26 -0000 1.37 +++ project.xml 24 Jun 2006 13:31:26 -0000 1.38 @@ -11,7 +11,7 @@ <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.2</currentVersion> + <currentVersion>1.3-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> @@ -60,6 +60,11 @@ <name>1.2</name> <tag>MAVEN_FINDBUGS_1_2</tag> </version> + <version> + <id>1.3</id> + <name>1.3</name> + <tag>MAVEN_FINDBUGS_1_3</tag> + </version> </versions> <!-- mailingLists is in parent --> @@ -103,17 +108,17 @@ <dependency> <groupId>findbugs</groupId> <artifactId>coreplugin</artifactId> - <version>0.9.6</version> + <version>1.0.0</version> </dependency> <dependency> <groupId>findbugs</groupId> <artifactId>findbugs</artifactId> - <version>0.9.6</version> + <version>1.0.0</version> </dependency> <dependency> <groupId>findbugs</groupId> <artifactId>findbugs-ant</artifactId> - <version>0.9.6</version> + <version>1.0.0</version> </dependency> <dependency> <groupId>dom4j</groupId> 1.5 +1 -1 maven-plugins/findbugs/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.properties,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.properties 12 May 2005 00:10:52 -0000 1.4 +++ plugin.properties 24 Jun 2006 13:31:26 -0000 1.5 @@ -16,4 +16,4 @@ maven.findbugs.debug = false maven.findbugs.workHard = true maven.findbugs.jvmargs = -Xmx256m - +maven.findbugs.failOnError = true 1.7 +9 -0 maven-plugins/findbugs/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/properties.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- properties.xml 3 May 2006 03:50:11 -0000 1.6 +++ properties.xml 24 Jun 2006 13:31:26 -0000 1.7 @@ -112,6 +112,15 @@ </p> </td> </tr> + <tr> + <td>maven.findbugs.failOnError</td> + <td>Yes</td> + <td> + <p> + Whether to abort the build process if there is an error running FindBugs. Defaults to true. + </p> + </td> + </tr> </table> </section> 1.31 +4 -0 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- changes.xml 5 Jun 2006 01:29:26 -0000 1.30 +++ changes.xml 24 Jun 2006 13:31:26 -0000 1.31 @@ -6,6 +6,10 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> + <release version="1.3" date="in CVS"> + <action dev="jeffjensen" type="update">Update to findbugs 1.0.0.</action> + <action dev="jeffjensen" type="add">Added maven.findbugs.failOnError property.</action> + </release> <release version="1.2" date="2005-06-04"> <action dev="jeffjensen" type="add" issue="1465572" due-to="Robert Zimmermann">Added violation description as a link to rule on FindBugs site in report; add "Priority" column.</action> <action dev="jeffjensen" type="add" issue="1378162" due-to="Garvin LeClaire">Added maven.findbugs.timeout property.</action> |