From: Jeff J. <jef...@us...> - 2006-08-09 02:12:35
|
jeffjensen 06/08/08 19:12:33 Modified: findbugs plugin.jelly project.xml findbugs/xdocs changes.xml Log: Prep for release 1.3.1. Fix 1536970 "Should use prereqs for java:compile", thanks to Shinobu Kawai. Revision Changes Path 1.16 +1 -3 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- plugin.jelly 4 Jul 2006 23:25:25 -0000 1.15 +++ plugin.jelly 9 Aug 2006 02:12:32 -0000 1.16 @@ -54,11 +54,9 @@ Generate the FindBugs report. ======================================================================== --> - <goal name="maven-findbugs-plugin:report" + <goal name="maven-findbugs-plugin:report" prereqs="java:compile" description="Generate source code report with FindBugs"> - <attainGoal name="java:compile"/> - <!-- Create the dirs if we start from a previously cleaned project --> <mkdir dir="${maven.build.dir}"/> <mkdir dir="${maven.docs.dest}"/> 1.42 +3 -3 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- project.xml 9 Jul 2006 23:31:40 -0000 1.41 +++ project.xml 9 Aug 2006 02:12:33 -0000 1.42 @@ -4,14 +4,14 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> - <extend>${basedir}/../plugin-project.xml</extend> + <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> <artifactId>maven-findbugs-plugin</artifactId> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.3</currentVersion> + <currentVersion>1.3.1-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> @@ -27,8 +27,8 @@ <connection>scm:cvs:pserver:ano...@ma...:/cvsroot/maven-plugins:maven-plugins/findbugs</connection> <developerConnection>scm:cvs:ext:${maven.username}@maven-plugins.cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/findbugs</developerConnection> <url>http://maven-plugins.cvs.sourceforge.net/maven-plugins/maven-plugins/findbugs</url> - </repository> + <versions> <version> <id>0.8.4</id> 1.34 +5 -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.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- changes.xml 9 Jul 2006 23:31:40 -0000 1.33 +++ changes.xml 9 Aug 2006 02:12:33 -0000 1.34 @@ -6,6 +6,11 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> + <release version="1.3.1" date="in CVS"> + <action dev="jeffjensen" type="update" issue="1536970" due-to="Shinobu Kawai"> + Should use prereqs for java:compile. + </action> + </release> <release version="1.3" date="2006-07-09"> <action dev="jeffjensen" type="update">Update to findbugs 1.0.0.</action> <action dev="jeffjensen" type="add">Added maven.findbugs.failOnError property.</action> |