From: Eric P. <de...@us...> - 2004-04-19 13:35:41
|
dep4b 04/04/19 06:35:35 Modified: findbugs plugin.jelly project.xml findbugs/xdocs changes.xml Log: Patch for link to findbugs-report.html in navigation Revision Changes Path 1.4 +1 -1 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.jelly 17 Feb 2004 13:58:34 -0000 1.3 +++ plugin.jelly 19 Apr 2004 13:35:34 -0000 1.4 @@ -123,7 +123,7 @@ " title="FindBugs Report" section="FindBugs Results" - output="${genDocs}/findbugs.xml" + output="${genDocs}/findbugs-report.xml" inputFile="${maven.build.dir}/findbugs-raw-report.txt"/> </goal> 1.8 +6 -1 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- project.xml 17 Feb 2004 13:58:34 -0000 1.7 +++ project.xml 19 Apr 2004 13:35:34 -0000 1.8 @@ -36,7 +36,12 @@ </developer> </developers> - <!-- no contributors --> + <contributors> + <contributor> + <name>Jerome Lacoste</name> + <id>jlacoste</id> + </contributor> + </contributors> <!-- licenses section not done yet --> 1.5 +5 -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.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- changes.xml 17 Feb 2004 14:00:14 -0000 1.4 +++ changes.xml 19 Apr 2004 13:35:35 -0000 1.5 @@ -6,7 +6,11 @@ </properties> <body> - + <release version="0.7.2" date="in cvs"> + <action dev="jlacoste" type="fix"> + Fix generated link to findbugs report. + </action> + </release> <release version="0.7.1" date="02-FEB-2004"> <action dev="epugh" type="add"> Update to findbugs version 0.7.1 |
From: Eric P. <de...@us...> - 2004-08-12 19:00:31
|
dep4b 04/08/12 12:00:23 Modified: findbugs project.xml findbugs/xdocs changes.xml Log: prep next version Revision Changes Path 1.15 +1 -1 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- project.xml 12 Aug 2004 18:39:40 -0000 1.14 +++ project.xml 12 Aug 2004 19:00:23 -0000 1.15 @@ -6,7 +6,7 @@ <id>maven-findbugs-plugin</id> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.8.4</currentVersion> + <currentVersion>0.8.5-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> 1.12 +3 -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.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- changes.xml 12 Aug 2004 18:58:38 -0000 1.11 +++ changes.xml 12 Aug 2004 19:00:23 -0000 1.12 @@ -2,10 +2,12 @@ <document> <properties> <title>Changes</title> - <author email="ep...@up...">Eric Pugh</author> + <author email="ep...@op...">Eric Pugh</author> </properties> <body> + <release version="0.8.5" date="in cvs"> + </release> <release version="0.8.4" date="12-AUGUST-2004"> <action dev="epugh" type="update"> Use findbugs version 0.8.4. |
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. |
From: Eric P. <de...@us...> - 2005-05-12 00:11:03
|
dep4b 05/05/11 17:10:52 Modified: findbugs plugin.properties plugin.jelly findbugs/xdocs changes.xml Log: 1194218 Work with larger projects better, use workHard=true and find low medium and high bugs Revision Changes Path 1.4 +9 -2 maven-plugins/findbugs/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.properties 7 Sep 2004 09:17:18 -0000 1.3 +++ plugin.properties 12 May 2005 00:10:52 -0000 1.4 @@ -5,8 +5,15 @@ # ------------------------------------------------------------------- # enable/disable findbugs - maven.findbugs.enable = true -maven.findbugs.detail = medium + +# lowest priority level of potential bugs to report +# high = only high priority +# medium = medium and high +# low = low, medium and high bugs. +maven.findbugs.detail = low maven.findbugs.conserveSpace = false maven.findbugs.debug = false +maven.findbugs.workHard = true +maven.findbugs.jvmargs = -Xmx256m + 1.11 +7 -1 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- plugin.jelly 6 May 2005 22:05:01 -0000 1.10 +++ plugin.jelly 12 May 2005 00:10:52 -0000 1.11 @@ -92,6 +92,7 @@ reportLevel="${maven.findbugs.detail}" conserveSpace="${maven.findbugs.conserveSpace}" debug="${maven.findbugs.debug}" + workHard="${maven.findbugs.workHard}" output="xdocs" outputFile="${maven.build.dir}/findbugs-raw-report.xml"> @@ -106,7 +107,12 @@ <j:if test="${context.getVariable('maven.findbugs.includeFilter') != null}"> <ant:setProperty name="includeFilter" value="${maven.findbugs.includeFilter}" /> </j:if> - + <j:forEach var="artifact" items="${pom.artifacts}"> + <j:set var="dep" value="${artifact.dependency}"/> + <j:if test="${dep.type =='jar'}"> + <auxClasspath path="${artifact.path}"/> + </j:if> + </j:forEach> <j:forEach var="lib" items="${pom.artifacts}"> <j:if test="${lib.dependency.type =='jar'}"> <auxClasspath path="${lib.path}"/> 1.17 +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.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- changes.xml 6 May 2005 22:05:01 -0000 1.16 +++ changes.xml 12 May 2005 00:10:52 -0000 1.17 @@ -7,6 +7,10 @@ <body> <release version="0.8.8" date="in CVS"> + <action dev="dep4b" type="add" due-to="Jon Chrisiansen" issue="1194218"> + add workHard option, set to true by default. Set VM to use 256 mb of memory and find + low, medium, and high bugs instead of just medium and high by default. + </action> <action dev="gleclaire" type="add"> Added maven.findbugs.debug property. </action> |
From: Eric P. <de...@us...> - 2005-06-18 13:04:35
|
dep4b 05/06/18 06:04:29 Modified: findbugs/xdocs changes.xml Log: update changes to reflect new 0.9.1 release. Revision Changes Path 1.18 +4 -4 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- changes.xml 12 May 2005 00:10:52 -0000 1.17 +++ changes.xml 18 Jun 2005 13:04:29 -0000 1.18 @@ -6,7 +6,10 @@ </properties> <body> - <release version="0.8.8" date="in CVS"> + <release version="0.9.1" date="in CVS"> + <action dev="epugh" type="update"> + Use findbugs version 0.9.1. + </action> <action dev="dep4b" type="add" due-to="Jon Chrisiansen" issue="1194218"> add workHard option, set to true by default. Set VM to use 256 mb of memory and find low, medium, and high bugs instead of just medium and high by default. @@ -23,9 +26,6 @@ <action dev="gleclaire" type="add"> Added maven.findbugs.includeFilter property. </action> - <action dev="epugh" type="update"> - Use findbugs version 0.8.8. - </action> </release> <release version="0.8.6" date=""> <action dev="epugh" type="update"> |
From: Carlos S. <car...@us...> - 2005-09-09 04:37:15
|
carlossg 05/09/08 21:37:07 Modified: findbugs project.xml findbugs/xdocs changes.xml Log: Make project.xml follow xml schema. Solves plugin error on maven 1.1. Revision Changes Path 1.24 +13 -16 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- project.xml 20 Jun 2005 19:35:23 -0000 1.23 +++ project.xml 9 Sep 2005 04:37:07 -0000 1.24 @@ -3,10 +3,10 @@ <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> - <id>maven-findbugs-plugin</id> + <artifactId>maven-findbugs-plugin</artifactId> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.9.1</currentVersion> + <currentVersion>0.9.2-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -48,20 +48,17 @@ </developers> <contributors> - <contributor> - <name>Jerome Lacoste</name> - <id>jlacoste</id> - </contributor> - <contributor> - <name>Garvin LeClaire</name> - <id>gleclaire</id> - <email>gle...@us...</email> - </contributor> - <contributor> - <name>Markus Torpvret</name> - <id>mtorp</id> - <email>mt...@us...</email> - </contributor> + <contributor> + <name>Jerome Lacoste</name> + </contributor> + <contributor> + <name>Garvin LeClaire</name> + <email>gle...@us...</email> + </contributor> + <contributor> + <name>Markus Torpvret</name> + <email>mt...@us...</email> + </contributor> </contributors> 1.20 +43 -38 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- changes.xml 20 Jun 2005 19:35:22 -0000 1.19 +++ changes.xml 9 Sep 2005 04:37:07 -0000 1.20 @@ -6,86 +6,91 @@ </properties> <body> - <release version="0.9.1" date="in CVS"> - <action dev="epugh" type="update"> + <release version="0.9.2-SNAPSHOT" date="in CVS"> + <action dev="carlossg" type="fix"> + Make project.xml follow xml schema. Solves plugin error on maven 1.1. + </action> + </release> + <release version="0.9.1" date="20-JULY-2005"> + <action dev="epugh" type="update"> Use findbugs version 0.9.1. - </action> - <action dev="dep4b" type="add" due-to="Jon Chrisiansen" issue="1194218"> + </action> + <action dev="dep4b" type="add" due-to="Jon Chrisiansen" issue="1194218"> add workHard option, set to true by default. Set VM to use 256 mb of memory and find low, medium, and high bugs instead of just medium and high by default. - </action> - <action dev="gleclaire" type="add"> + </action> + <action dev="gleclaire" type="add"> Added maven.findbugs.debug property. - </action> + </action> <action dev="gleclaire" type="add"> Added maven.findbugs.jvmargs property. - </action> + </action> <action dev="gleclaire" type="add"> Added maven.findbugs.excludeFilter property. - </action> + </action> <action dev="gleclaire" type="add"> Added maven.findbugs.includeFilter property. - </action> + </action> </release> <release version="0.8.6" date="20-JUNE-2005"> - <action dev="epugh" type="update"> + <action dev="epugh" type="update"> Use findbugs version 0.8.6. Jar's are included as part of the plugin. - </action> - <action dev="mtorp" type="fix"> + </action> + <action dev="mtorp" type="fix"> Fix jelly script error in checking if a pom.artifacts was a jar file or not. - </action> - <action dev="gleclaire" type="add"> + </action> + <action dev="gleclaire" type="add"> Added maven.findbugs.conserveSpace property. - </action> - <action dev="gleclaire" type="add"> + </action> + <action dev="gleclaire" type="add"> Added maven.findbugs.debug property. - </action> - <action dev="gleclaire" type="add"> + </action> + <action dev="gleclaire" type="add"> Added maven.findbugs.jvmargs property. - </action> + </action> </release> <release version="0.8.4" date="12-AUGUST-2004"> - <action dev="epugh" type="update"> + <action dev="epugh" type="update"> Use findbugs version 0.8.4. </action> - <action dev="epugh" type="fix" issue="1003083"> + <action dev="epugh" type="fix" issue="1003083"> Only include jar dependencies. - </action> - <action dev="epugh" type="add"> + </action> + <action dev="epugh" type="add"> Add example Findbugs report to site docs. - </action> + </action> </release> <release version="0.8.2" date="29-JULY-2004"> - <action dev="epugh" type="add"> + <action dev="epugh" type="add"> Switch to maven friendly raw report format. Add new "pmd" style report. - </action> - <action dev="epugh" type="add"> + </action> + <action dev="epugh" type="add"> add maven.findbugs.detail which can be low, medium, or high to control which errors are displayed. - </action> - <action dev="epugh" type="add"> + </action> + <action dev="epugh" type="add"> Instead of running findbugs against a compiled jar, run against the individual classes. This avoids running the unit tests just to get a compiled jar. </action> - <action dev="epugh" type="update"> + <action dev="epugh" type="update"> Use findbugs version 0.8.2. </action> </release> <release version="0.7.2" date="19-APR-2004"> - <action dev="jlacoste" type="fix"> + <action dev="jlacoste" type="fix"> Fix generated link to findbugs report. </action> </release> <release version="0.7.1" date="02-FEB-2004"> - <action dev="epugh" type="add"> + <action dev="epugh" type="add"> Update to findbugs version 0.7.1 </action> - <action dev="epugh" type="fix"> + <action dev="epugh" type="fix"> Fixed bugs in report generation. - </action> - <action dev="epugh" type="add"> - Added /src/plugin-test to simplify testing. + </action> + <action dev="epugh" type="add"> + Added /src/plugin-test to simplify testing. </action> - </release> + </release> <release version="0.7.0" date="in CVS"> <action dev="epugh" type="add"> Generate text report following pattern by |
From: Carlos S. <car...@us...> - 2005-09-12 13:04:54
|
carlossg 05/09/12 06:04:48 Modified: findbugs project.xml findbugs/xdocs changes.xml Log: Prepare release 0.9.2 Revision Changes Path 1.25 +20 -24 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- project.xml 9 Sep 2005 04:37:07 -0000 1.24 +++ project.xml 12 Sep 2005 13:04:48 -0000 1.25 @@ -6,7 +6,7 @@ <artifactId>maven-findbugs-plugin</artifactId> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.9.2-SNAPSHOT</currentVersion> + <currentVersion>0.9.2</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -14,12 +14,10 @@ <shortDescription>Findbugs tasks</shortDescription> <!-- issue tracking url, siteAddress are in parent --> <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-findbugs-plugin/</siteDirectory> - <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/findbugs</connection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/findbugs/</url> </repository> - <versions> <version> <id>0.8.4</id> @@ -30,10 +28,14 @@ <id>0.9.1</id> <name>0.9.1</name> <tag>MAVEN_FINDBUGS_0_9_1</tag> - </version> + </version> + <version> + <id>0.9.2</id> + <name>0.9.2</name> + <tag>MAVEN_FINDBUGS_0_9_2</tag> + </version> </versions> <!-- mailingLists is in parent --> - <developers> <developer> <name>Eric Pugh</name> @@ -46,34 +48,28 @@ </roles> </developer> </developers> - <contributors> - <contributor> - <name>Jerome Lacoste</name> - </contributor> - <contributor> - <name>Garvin LeClaire</name> - <email>gle...@us...</email> - </contributor> - <contributor> - <name>Markus Torpvret</name> - <email>mt...@us...</email> - </contributor> - </contributors> - - + <contributor> + <name>Jerome Lacoste</name> + </contributor> + <contributor> + <name>Garvin LeClaire</name> + <email>gle...@us...</email> + </contributor> + <contributor> + <name>Markus Torpvret</name> + <email>mt...@us...</email> + </contributor> + </contributors> <!-- licenses section not done yet --> - <dependencies> <!-- Findbugs Jars are in src/plugin-resources/jars --> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.4</version> - </dependency> + </dependency> </dependencies> - <!-- build is in the parent --> <!-- reports is in the parent --> - </project> 1.21 +40 -100 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- changes.xml 9 Sep 2005 04:37:07 -0000 1.20 +++ changes.xml 12 Sep 2005 13:04:48 -0000 1.21 @@ -1,113 +1,53 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> + <document> <properties> <title>Changes</title> <author email="ep...@op...">Eric Pugh</author> </properties> - <body> - <release version="0.9.2-SNAPSHOT" date="in CVS"> - <action dev="carlossg" type="fix"> - Make project.xml follow xml schema. Solves plugin error on maven 1.1. - </action> - </release> - <release version="0.9.1" date="20-JULY-2005"> - <action dev="epugh" type="update"> - Use findbugs version 0.9.1. - </action> - <action dev="dep4b" type="add" due-to="Jon Chrisiansen" issue="1194218"> - add workHard option, set to true by default. Set VM to use 256 mb of memory and find - low, medium, and high bugs instead of just medium and high by default. - </action> - <action dev="gleclaire" type="add"> - Added maven.findbugs.debug property. - </action> - <action dev="gleclaire" type="add"> - Added maven.findbugs.jvmargs property. - </action> - <action dev="gleclaire" type="add"> - Added maven.findbugs.excludeFilter property. - </action> - <action dev="gleclaire" type="add"> - Added maven.findbugs.includeFilter property. - </action> - </release> - <release version="0.8.6" date="20-JUNE-2005"> - <action dev="epugh" type="update"> - 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. - </action> - <action dev="gleclaire" type="add"> - Added maven.findbugs.conserveSpace property. - </action> - <action dev="gleclaire" type="add"> - Added maven.findbugs.debug property. - </action> - <action dev="gleclaire" type="add"> - Added maven.findbugs.jvmargs property. - </action> + <release version="0.9.2" date="2005-09-12"> + <action dev="carlossg" type="fix">Make project.xml follow xml schema. Solves plugin error on maven 1.1.</action> + </release> + <release version="0.9.1" date="20-JULY-2005"> + <action dev="epugh" type="update">Use findbugs version 0.9.1.</action> + <action dev="dep4b" type="add" due-to="Jon Chrisiansen" issue="1194218">add workHard option, set to true by default. Set VM to use 256 mb of memory and find low, medium, and high bugs instead of just medium and high by default.</action> + <action dev="gleclaire" type="add">Added maven.findbugs.debug property.</action> + <action dev="gleclaire" type="add">Added maven.findbugs.jvmargs property.</action> + <action dev="gleclaire" type="add">Added maven.findbugs.excludeFilter property.</action> + <action dev="gleclaire" type="add">Added maven.findbugs.includeFilter property.</action> + </release> + <release version="0.8.6" date="20-JUNE-2005"> + <action dev="epugh" type="update">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.</action> + <action dev="gleclaire" type="add">Added maven.findbugs.conserveSpace property.</action> + <action dev="gleclaire" type="add">Added maven.findbugs.debug property.</action> + <action dev="gleclaire" type="add">Added maven.findbugs.jvmargs property.</action> </release> <release version="0.8.4" date="12-AUGUST-2004"> - <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> + <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> </release> <release version="0.8.2" date="29-JULY-2004"> - <action dev="epugh" type="add"> - Switch to maven friendly raw report format. Add new "pmd" style report. - </action> - <action dev="epugh" type="add"> - add maven.findbugs.detail which can be low, medium, or high to control which errors are displayed. - </action> - <action dev="epugh" type="add"> - Instead of running findbugs against a compiled jar, run against the individual classes. This - avoids running the unit tests just to get a compiled jar. - </action> - <action dev="epugh" type="update"> - Use findbugs version 0.8.2. - </action> - </release> - <release version="0.7.2" date="19-APR-2004"> - <action dev="jlacoste" type="fix"> - Fix generated link to findbugs report. - </action> - </release> - <release version="0.7.1" date="02-FEB-2004"> - <action dev="epugh" type="add"> - Update to findbugs version 0.7.1 - </action> - <action dev="epugh" type="fix"> - Fixed bugs in report generation. - </action> - <action dev="epugh" type="add"> - Added /src/plugin-test to simplify testing. - </action> - </release> - <release version="0.7.0" date="in CVS"> - <action dev="epugh" type="add"> - Generate text report following pattern by - bwalding. Can now be registered by adding - maven-findbugs-report to report POM section. - </action> - <action dev="epugh" type="update"> - Update dependencies for findbugs 0.6.5. - </action> - <action dev="epugh" type="update"> - Update dependencies for findbugs 0.6.4. - </action> - <action dev="epugh" type="add"> - Initial cut of FindBugs plugin. - </action> + <action dev="epugh" type="add">Switch to maven friendly raw report format. Add new "pmd" style report.</action> + <action dev="epugh" type="add">add maven.findbugs.detail which can be low, medium, or high to control which errors are displayed.</action> + <action dev="epugh" type="add">Instead of running findbugs against a compiled jar, run against the individual classes. This avoids running the unit tests just to get a compiled jar.</action> + <action dev="epugh" type="update">Use findbugs version 0.8.2.</action> + </release> + <release version="0.7.2" date="19-APR-2004"> + <action dev="jlacoste" type="fix">Fix generated link to findbugs report.</action> + </release> + <release version="0.7.1" date="02-FEB-2004"> + <action dev="epugh" type="add">Update to findbugs version 0.7.1</action> + <action dev="epugh" type="fix">Fixed bugs in report generation.</action> + <action dev="epugh" type="add">Added /src/plugin-test to simplify testing.</action> + </release> + <release version="0.7.0" date="in CVS"> + <action dev="epugh" type="add">Generate text report following pattern by bwalding. Can now be registered by adding maven-findbugs-report to report POM section.</action> + <action dev="epugh" type="update">Update dependencies for findbugs 0.6.5.</action> + <action dev="epugh" type="update">Update dependencies for findbugs 0.6.4.</action> + <action dev="epugh" type="add">Initial cut of FindBugs plugin.</action> </release> - </body> </document> - |
From: Eric P. <de...@us...> - 2005-11-01 16:33:30
|
dep4b 05/11/01 08:33:25 Modified: findbugs/xdocs changes.xml Log: update list of changes for 1.0. Revision Changes Path 1.23 +4 -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.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- changes.xml 11 Oct 2005 05:06:37 -0000 1.22 +++ changes.xml 1 Nov 2005 16:33:24 -0000 1.23 @@ -6,7 +6,10 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> - <release version="0.9.3-SNAPSHOT" date="in CVS"> + <release version="1.0-SNAPSHOT" date="in CVS"> + <action dev="dep4b" type="update">Switch from naming Maven Findbugs releases after Findbugs versions to using a sequence just for Maven Findbugs Plugin.</action> + <action dev="dep4b" type="fix" issue="1078970">Sample findbugs report didn't have xref source to link to.</action> + <action dev="dep4b" type="fix" due-to="John Whaley" issue="1194218">FindBugs does not xref to source of inner classes correctly.</action> <action dev="carlossg" type="fix">Use libraries as dependencies instead of bundle them.</action> <action dev="carlossg" type="update">Upgrade to findbugs 0.9.3.</action> </release> |
From: Eric P. <de...@us...> - 2005-11-01 16:39:46
|
dep4b 05/11/01 08:39:37 Modified: findbugs project.xml findbugs/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.0 Revision Changes Path 1.30 +6 -3 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- project.xml 1 Nov 2005 16:22:54 -0000 1.29 +++ project.xml 1 Nov 2005 16:39:37 -0000 1.30 @@ -6,7 +6,7 @@ <artifactId>maven-findbugs-plugin</artifactId> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.0-SNAPSHOT</currentVersion> + <currentVersion>1.0</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -15,13 +15,11 @@ <url>http://maven-plugins.sourceforge.net/${pom.artifactId}</url> <!-- issue tracking url, siteAddress are in parent --> <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-findbugs-plugin/</siteDirectory> - <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/findbugs</connection> <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/findbugs</developerConnection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/findbugs/</url> </repository> - <versions> <version> <id>0.8.4</id> @@ -38,6 +36,11 @@ <name>0.9.2</name> <tag>MAVEN_FINDBUGS_0_9_2</tag> </version> + <version> + <id>1.0</id> + <name>1.0</name> + <tag>MAVEN_FINDBUGS_1_0</tag> + </version> </versions> <!-- mailingLists is in parent --> <developers> 1.24 +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.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- changes.xml 1 Nov 2005 16:33:24 -0000 1.23 +++ changes.xml 1 Nov 2005 16:39:37 -0000 1.24 @@ -6,7 +6,7 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> - <release version="1.0-SNAPSHOT" date="in CVS"> + <release version="1.0" date="2005-11-01"> <action dev="dep4b" type="update">Switch from naming Maven Findbugs releases after Findbugs versions to using a sequence just for Maven Findbugs Plugin.</action> <action dev="dep4b" type="fix" issue="1078970">Sample findbugs report didn't have xref source to link to.</action> <action dev="dep4b" type="fix" due-to="John Whaley" issue="1194218">FindBugs does not xref to source of inner classes correctly.</action> |
From: Eric P. <de...@us...> - 2006-01-03 02:23:36
|
dep4b 06/01/02 18:23:27 Modified: findbugs/xdocs changes.xml Log: mention update to findbug jars for 0.9.4 Revision Changes Path 1.25 +3 -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.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- changes.xml 1 Nov 2005 16:39:37 -0000 1.24 +++ changes.xml 3 Jan 2006 02:23:27 -0000 1.25 @@ -6,6 +6,9 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> + <release version="1.1" date="cvs"> + <action dev="dep4b" type="update">Update to findbugs 0.9.4.</action> + </release> <release version="1.0" date="2005-11-01"> <action dev="dep4b" type="update">Switch from naming Maven Findbugs releases after Findbugs versions to using a sequence just for Maven Findbugs Plugin.</action> <action dev="dep4b" type="fix" issue="1078970">Sample findbugs report didn't have xref source to link to.</action> |
From: Eric P. <de...@us...> - 2006-01-03 02:33:23
|
dep4b 06/01/02 18:33:03 Modified: findbugs project.xml findbugs/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.1 Revision Changes Path 1.32 +14 -1 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- project.xml 12 Dec 2005 05:01:42 -0000 1.31 +++ project.xml 3 Jan 2006 02:33:03 -0000 1.32 @@ -3,17 +3,22 @@ <project> <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.1-SNAPSHOT</currentVersion> + + <currentVersion>1.1</currentVersion> <!-- organization is in parent --> + <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> + <description>A plugin to automate FindBugs tasks</description> <shortDescription>Findbugs tasks</shortDescription> <url>http://maven-plugins.sourceforge.net/${pom.artifactId}</url> <!-- issue tracking url, siteAddress are in parent --> + <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-findbugs-plugin/</siteDirectory> <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/findbugs</connection> @@ -41,8 +46,14 @@ <name>1.0</name> <tag>MAVEN_FINDBUGS_1_0</tag> </version> + <version> + <id>1.1</id> + <name>1.1</name> + <tag>MAVEN_FINDBUGS_1_1</tag> + </version> </versions> <!-- mailingLists is in parent --> + <developers> <developer> <name>Eric Pugh</name> @@ -69,6 +80,7 @@ </contributor> </contributors> <!-- licenses section not done yet --> + <dependencies> <dependency> <groupId>findbugs</groupId> @@ -98,4 +110,5 @@ </dependencies> <!-- build is in the parent --> <!-- reports is in the parent --> + </project> 1.26 +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.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- changes.xml 3 Jan 2006 02:23:27 -0000 1.25 +++ changes.xml 3 Jan 2006 02:33:03 -0000 1.26 @@ -6,7 +6,7 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> - <release version="1.1" date="cvs"> + <release version="1.1" date="2006-01-02"> <action dev="dep4b" type="update">Update to findbugs 0.9.4.</action> </release> <release version="1.0" date="2005-11-01"> |
From: Eric P. <de...@us...> - 2006-01-03 02:54:04
|
dep4b 06/01/02 18:53:58 Modified: findbugs project.xml findbugs/xdocs changes.xml Log: prep for 1.2 version! Revision Changes Path 1.33 +1 -1 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- project.xml 3 Jan 2006 02:33:03 -0000 1.32 +++ project.xml 3 Jan 2006 02:53:58 -0000 1.33 @@ -8,7 +8,7 @@ <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.1</currentVersion> + <currentVersion>1.2-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> 1.27 +2 -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.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- changes.xml 3 Jan 2006 02:33:03 -0000 1.26 +++ changes.xml 3 Jan 2006 02:53:58 -0000 1.27 @@ -6,6 +6,8 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> + <release version="1.2" date="in cvs"> + </release> <release version="1.1" date="2006-01-02"> <action dev="dep4b" type="update">Update to findbugs 0.9.4.</action> </release> |
From: Jeff J. <jef...@us...> - 2006-05-02 06:03:21
|
jeffjensen 06/05/01 23:03:21 Modified: findbugs/xdocs changes.xml Log: Add entry for issue 1465572: link to bug descriptions. Revision Changes Path 1.28 +1 -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.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- changes.xml 3 Jan 2006 02:53:58 -0000 1.27 +++ changes.xml 2 May 2006 06:03:21 -0000 1.28 @@ -7,6 +7,7 @@ </properties> <body> <release version="1.2" date="in cvs"> + <action dev="jeffjensen" type="add" issue="1465572" due-to="Robert Zimmermann">Have violation description link to rule on FindBugs site in report; add "Priority" column.</action> </release> <release version="1.1" date="2006-01-02"> <action dev="dep4b" type="update">Update to findbugs 0.9.4.</action> |