You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(37) |
Oct
(12) |
Nov
|
Dec
(47) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(9) |
Feb
(6) |
Mar
(1) |
Apr
(85) |
May
(9) |
Jun
|
Jul
(6) |
Aug
(85) |
Sep
(42) |
Oct
(27) |
Nov
(15) |
Dec
(27) |
2004 |
Jan
(39) |
Feb
(52) |
Mar
(43) |
Apr
(32) |
May
(18) |
Jun
(5) |
Jul
(63) |
Aug
(69) |
Sep
(12) |
Oct
(80) |
Nov
(55) |
Dec
(30) |
2005 |
Jan
(27) |
Feb
(6) |
Mar
(43) |
Apr
(5) |
May
(48) |
Jun
(48) |
Jul
(100) |
Aug
(16) |
Sep
(43) |
Oct
(25) |
Nov
(249) |
Dec
(2) |
2006 |
Jan
(9) |
Feb
(2) |
Mar
|
Apr
(26) |
May
(21) |
Jun
(8) |
Jul
(14) |
Aug
(104) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(32) |
Feb
|
Mar
(2) |
Apr
|
May
(38) |
Jun
(2) |
Jul
(9) |
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
(3) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Carlos S. <car...@us...> - 2005-09-22 02:31:12
|
carlossg 05/09/21 19:30:58 maven-plugins/cobertura/src/plugin-test/testGenerateReportWhenTestFails/src/main/org/apache - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:31:11
|
carlossg 05/09/21 19:31:01 maven-plugins/cobertura/src/plugin-test/testGenerateReportWhenTestFails/src/main/org/apache/maven - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:31:08
|
carlossg 05/09/21 19:30:54 maven-plugins/cobertura/src/plugin-test/testGenerateReportWhenTestFails/src/main/org - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:30:58
|
carlossg 05/09/21 19:30:47 maven-plugins/cobertura/src/plugin-test/testGenerateReportWhenTestFails/src - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:30:57
|
carlossg 05/09/21 19:30:51 maven-plugins/cobertura/src/plugin-test/testGenerateReportWhenTestFails/src/test - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:30:57
|
carlossg 05/09/21 19:30:51 maven-plugins/cobertura/src/plugin-test/testGenerateReportWhenTestFails/src/main - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:30:47
|
carlossg 05/09/21 19:30:42 maven-plugins/cobertura/src/plugin-test/testSimple - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:30:47
|
carlossg 05/09/21 19:30:41 maven-plugins/cobertura/src/plugin-test/testGenerateReportWhenTestFails - New directory |
From: Carlos S. <car...@us...> - 2005-09-22 02:30:44
|
carlossg 05/09/21 19:30:37 maven-plugins/cobertura/src/plugin-test - New directory |
From: Carlos S. <car...@us...> - 2005-09-21 18:04:55
|
carlossg 05/09/21 11:04:18 Modified: findbugs/src/plugin-test project.xml Log: Follow xml schema Revision Changes Path 1.5 +2 -2 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.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- project.xml 12 Aug 2004 18:28:46 -0000 1.4 +++ project.xml 21 Sep 2005 18:04:17 -0000 1.5 @@ -2,7 +2,7 @@ <project> <pomVersion>3</pomVersion> - <id>test-maven-findbugs-plugin</id> + <artifactId>test-maven-findbugs-plugin</artifactId> <name>Test project for Maven Findbugs Plugin</name> <groupId>maven-plugins</groupId> <currentVersion>1.0-SNAPSHOT</currentVersion> @@ -31,7 +31,7 @@ </dependency> </dependencies> <build> - <sourceDirectory>${basedir}/src/java</sourceDirectory>s + <sourceDirectory>${basedir}/src/java</sourceDirectory> </build> <reports> |
From: Elliotte H. <el...@me...> - 2005-09-20 13:10:54
|
I've managed to verify that the problem with the Cobertura plugin for Maven is that the classpath is not pointing to the right directories. This is controlled by the properties maven.build.dest and maven.test.dest. These are set correctly in the cobertura plugin.jelly, but the test plugin does not pick up these values. that is, these lines fail silently: <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${instrumented}"/> <maven:set plugin="maven-test-plugin" property="maven.build.dest" value="${instrumented}"/> <maven:set plugin="maven-test-plugin" property="maven.test.dest" value="${instrumented}"/> <maven:set plugin="maven-java-plugin" property="maven.test.dest" value="${instrumented}"/> The following info from the maven documentation may or may not have something to do with this: "As you will have seen many plugins have their own properties. You can set these values in the current project before the plugin is initialised, and they will be recognised. However, once it is initialised, setting them in the current project will have no effect, and changes made within the plugin are not visible to the current project." Does this help anyone see what's wrong? When would the test plugin be initialized? Also, the cobertura plugin attempts to store the old values of maven.build.dest and maven.test.dest, change them to the instrumented directory, run the tests, then restore the old values of maven.build.dest and maven.test.dest. is there any way this can work? -- Elliotte Rusty Harold el...@me... XML in a Nutshell 3rd Edition Just Published! http://www.cafeconleche.org/books/xian3/ http://www.amazon.com/exec/obidos/ISBN=0596007647/cafeaulaitA/ref=nosim |
From: Carlos S. <car...@us...> - 2005-09-19 18:33:01
|
carlossg 05/09/19 11:32:54 Modified: cobertura project.xml Log: Removed wrongly removed dependency Revision Changes Path 1.19 +6 -0 maven-plugins/cobertura/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/project.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- project.xml 25 Aug 2005 17:06:33 -0000 1.18 +++ project.xml 19 Sep 2005 18:32:54 -0000 1.19 @@ -91,6 +91,12 @@ <version>21.41</version> <url>http://www.kclee.de/clemens/java/javancss/</url> </dependency> + <dependency> + <groupId>javancss</groupId> + <artifactId>javancss</artifactId> + <version>21.41</version> + <url>http://www.kclee.de/clemens/java/javancss/</url> + </dependency> </dependencies> <reports> <report>maven-changelog-plugin</report> |
From: Elliotte H. <el...@me...> - 2005-09-18 08:48:17
|
I'm trying to get the Maven plugin for Cobertura to work. Cobertura instruments code to measure coverage of the test suite. To do this it recompiles the code base into a different directory from the usual build directory. I then need to run the test suite (<attainGoal name="test:test"/>) using this instrumented directory rather than the usual build directory. Using verbose output from Maven it's apparent that the tests are running with the original code rather than the instrumented code: [junit] [DEBUG] Execute:Java13CommandLauncher: Executing '/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/bin/java' with arguments: '-Dbasedir=/Users/elharo/Projects/Jaxen' '-classpath' '/Users/elharo/Projects/Jaxen/target/test-classes:/Users/elharo/Projects/Jaxen/target/classes:/Users/elharo/.maven/repository/dom4j/jars/dom4j-1.6.1.jar:/Users/elharo/.maven/repository/jdom/jars/jdom-1.0.jar:/Users/elharo/.maven/repository/xerces/jars/xmlParserAPIs-2.6.2.jar:/Users/elharo/.maven/repository/xerces/jars/xercesImpl-2.6.2.jar:/Users/elharo/.maven/repository/xom/jars/xom-1.0b3.jar:/Users/elharo/.maven/repository/urbanophile/jars/java-getopt-1.0.9.jar:/Users/elharo/.maven/repository/javancss/jars/javancss-21.41.jar:/Users/elharo/.maven/repository/javancss/jars/ccl-21.41.jar:/Users/elharo/.maven/repository/asm/jars/asm-2.0.jar:/Users/elharo/.maven/repository/oro/jars/oro-2.0.8.jar:/Users/elharo/.maven/repository/log4j/jars/log4j-1.2.8.jar:/Users/elharo/.maven/repository/cobertura/jars/cobertura-1.6.jar:/Users/elharo/.maven/repository/junit/jars/junit-3.8.1.jar:/Users/elharo/.maven/repository/xml-apis/jars/xml-apis-1.0.b2.jar:/Users/elharo/.maven/repository/xerces/ja rs/xerces-2.4.0.jar:/opt/maven-1.0.2/lib/ant-1.5.3-1.jar:/opt/maven-1.0.2/lib/ant-optional-1.5.3-1.jar' 'org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner' Instead of /Users/elharo/Projects/Jaxen/target/classes that should be /Users/elharo/Projects/Jaxen/target/cobertura/classes What I'm not sure of is how to change the Cobertura plugin.jelly file to use a different directory for the test classpath. Currently we have this: <attainGoal name="cobertura:on"/> <attainGoal name="test:test"/> The cobertura:on goal does set the following variables: <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${instrumented}"/> <maven:set plugin="maven-test-plugin" property="maven.build.dest" value="${instrumented}"/> $instrumented is the directory where the instrumented classes live) and I've verified via log:info that these variables do get changed. However, this doesn't seem to affect the classpath for the JUnit test runner. Any ideas? -- Elliotte Rusty Harold el...@me... XML in a Nutshell 3rd Edition Just Published! http://www.cafeconleche.org/books/xian3/ http://www.amazon.com/exec/obidos/ISBN=0596007647/cafeaulaitA/ref=nosim |
From: Carlos S. <car...@us...> - 2005-09-12 13:42:15
|
carlossg 05/09/12 06:41:37 Modified: findbugs project.xml Log: [maven-scm-plugin] prepare release 0.9.2 Revision Changes Path 1.26 +3 -0 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- project.xml 12 Sep 2005 13:04:48 -0000 1.25 +++ project.xml 12 Sep 2005 13:41:37 -0000 1.26 @@ -14,10 +14,13 @@ <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> + <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> |
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: 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-08-30 16:23:15
|
carlossg 05/08/30 09:23:04 Modified: sdocbook plugin.jelly sdocbook/xdocs changes.xml Log: Source structure was not respected Revision Changes Path 1.20 +25 -5 maven-plugins/sdocbook/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sdocbook/plugin.jelly,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- plugin.jelly 1 Aug 2005 21:52:14 -0000 1.19 +++ plugin.jelly 30 Aug 2005 16:23:04 -0000 1.20 @@ -189,10 +189,16 @@ <j:forEach var="file" items="${scanner.iterator()}"> - <!-- strip the extension from the file name --> - <j:set var="index" value="${file.name.lastIndexOf('.')}"/> - <j:set var="maven.sdocbook.out" value="${maven.sdocbook.generated}/${file.name.substring(0,index)}.html"/> + <!-- Extract the path component of the original file, relative to + maven.sdocbook.src.dir. --> + <j:set var="rfpath" value="${file.absolutePath.replaceFirst(context.getVariable('maven.sdocbook.src.dir'),'')}" /> + <j:set var="rdir" value="${rfpath.substring(0,rfpath.lastIndexOf('/'))}" /> + + <!-- create target hierarchy --> + <mkdir dir="${maven.sdocbook.generated}/${rdir}"/> + <j:set var="index" value="${file.name.lastIndexOf('.')}"/> + <j:set var="maven.sdocbook.out" value="${maven.sdocbook.generated}/${rdir}/${file.name.substring(0,index)}.html"/> <attainGoal name="sdocbook:transform"/> </j:forEach> @@ -279,9 +285,16 @@ <j:forEach var="file" items="${scanner.iterator()}"> + <!-- Extract the path component of the original file, relative to + maven.sdocbook.src.dir. --> + <j:set var="rfpath" value="${file.absolutePath.replaceFirst(context.getVariable('maven.sdocbook.src.dir'),'')}" /> + <j:set var="rdir" value="${rfpath.substring(0,rfpath.lastIndexOf('/'))}" /> + <!-- create target hierarchy --> + <mkdir dir="${maven.sdocbook.generated}/${rdir}"/> + <!-- strip the extension from the file name --> <j:set var="index" value="${file.name.lastIndexOf('.')}"/> - <j:set var="maven.sdocbook.out" value="${maven.sdocbook.generated}/${file.name.substring(0,index)}.fo"/> + <j:set var="maven.sdocbook.out" value="${maven.sdocbook.generated}/${rdir}/${file.name.substring(0,index)}.fo"/> <attainGoal name="sdocbook:transform"/> @@ -323,6 +336,13 @@ <j:set var="index" value="${file.name.lastIndexOf('.')}"/> <j:set var="basename" value="${file.name.substring(0,index)}"/> + <!-- Extract the path component of the original file, relative to + maven.sdocbook.generated.fo. --> + <j:set var="rfpath" value="${file.absolutePath.replaceFirst(context.getVariable('maven.sdocbook.generated.fo'),'')}" /> + <j:set var="rdir" value="${rfpath.substring(0,rfpath.lastIndexOf('/'))}" /> + <!-- create target hierarchy --> + <mkdir dir="${maven.sdocbook.generated.pdf}/${rdir}"/> + <!-- Run FOP to transform FO into PDF --> <java classname="org.apache.fop.apps.Fop" fork="yes" failonerror="true"> <jvmarg value="-Xbootclasspath/p:${_bootclasspath}"/> @@ -340,7 +360,7 @@ <arg value="-fo"/> <arg value="${file.absolutePath}"/> <arg value="-pdf"/> - <arg value="${maven.sdocbook.generated.pdf}/${basename}.pdf"/> + <arg value="${maven.sdocbook.generated.pdf}/${rdir}/${basename}.pdf"/> </java> </j:forEach> 1.17 +1 -0 maven-plugins/sdocbook/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sdocbook/xdocs/changes.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- changes.xml 1 Aug 2005 18:21:32 -0000 1.16 +++ changes.xml 30 Aug 2005 16:23:04 -0000 1.17 @@ -8,6 +8,7 @@ </properties> <body> <release version="1.4.2-SNAPSHOT" date="in CVS"> + <action dev="carlossg" type="fix" due-to="Julian C. Dunn" issue="1182778">Source structure was not respected</action> <action dev="carlossg" type="fix">maven.sdocbook.files property was not properly used</action> <action dev="carlossg" type="update">Generate xhtml instead of html</action> </release> |
From: Geoffrey De S. <ge0...@us...> - 2005-08-29 16:52:17
|
ge0ffrey 05/08/29 09:52:09 Modified: jaxb project.xml Log: added versions for download (fix) Revision Changes Path 1.7 +2 -2 maven-plugins/jaxb/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/project.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- project.xml 29 Aug 2005 16:51:05 -0000 1.6 +++ project.xml 29 Aug 2005 16:52:09 -0000 1.7 @@ -20,8 +20,8 @@ <versions> <version> - <id>1.0.0</id> - <name>1.0.0</name> + <id>1.0</id> + <name>1.0</name> </version> <version> <id>1.1.0</id> |
From: Geoffrey De S. <ge0...@us...> - 2005-08-29 16:51:14
|
ge0ffrey 05/08/29 09:51:05 Modified: jaxb project.xml Log: added versions for download Revision Changes Path 1.6 +12 -0 maven-plugins/jaxb/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/project.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- project.xml 19 Jun 2005 14:10:29 -0000 1.5 +++ project.xml 29 Aug 2005 16:51:05 -0000 1.6 @@ -18,6 +18,18 @@ <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/jaxb/</url> </repository> + <versions> + <version> + <id>1.0.0</id> + <name>1.0.0</name> + </version> + <version> + <id>1.1.0</id> + <name>1.1.0</name> + <tag>MAVEN_JAXB_PLUGIN_1_1_0</tag> + </version> + </versions> + <developers> <developer> <name>Brett Porter</name> |
From: Geoffrey De S. <ge0...@us...> - 2005-08-28 17:33:55
|
ge0ffrey 05/08/28 10:33:50 Modified: jaxb plugin.jelly Log: the xjc call should include a reference to maven.dependency.classpath (asked by Brett) Revision Changes Path 1.3 +1 -0 maven-plugins/jaxb/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/plugin.jelly,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- plugin.jelly 19 Jun 2005 14:10:29 -0000 1.2 +++ plugin.jelly 28 Aug 2005 17:33:50 -0000 1.3 @@ -30,6 +30,7 @@ excludes="${maven.jaxb.bindings.excludes}"/> <ant:classpath> <ant:pathelement path="${maven.build.dest}" /> + <ant:pathelement path="${maven.dependency.classpath}" /> </ant:classpath> </xjc> <ant:touch file="${maven.jaxb.build.dir}/.flagfile" /> |
From: Carlos S. <car...@us...> - 2005-08-25 17:06:43
|
carlossg 05/08/25 10:06:33 Modified: cobertura project.xml Log: Removed duplicate dependency Revision Changes Path 1.18 +0 -6 maven-plugins/cobertura/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/project.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- project.xml 23 Aug 2005 17:53:13 -0000 1.17 +++ project.xml 25 Aug 2005 17:06:33 -0000 1.18 @@ -87,12 +87,6 @@ </dependency> <dependency> <groupId>javancss</groupId> - <artifactId>javancss</artifactId> - <version>21.41</version> - <url>http://www.kclee.de/clemens/java/javancss/</url> - </dependency> - <dependency> - <groupId>javancss</groupId> <artifactId>ccl</artifactId> <version>21.41</version> <url>http://www.kclee.de/clemens/java/javancss/</url> |
From: <jo...@us...> - 2005-08-25 09:09:37
|
joehni 05/08/25 02:09:28 Modified: javaapp/xdocs index.xml Log: Update project description. Revision Changes Path 1.5 +6 -5 maven-plugins/javaapp/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/xdocs/index.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- index.xml 16 Nov 2004 12:20:17 -0000 1.4 +++ index.xml 25 Aug 2005 09:09:28 -0000 1.5 @@ -15,22 +15,23 @@ <section name="Maven Java Application Plug-in"> <p> This plug-in provides support for creating, installing and running - an executable JAR for Maven 1.0. + an executable JAR for Maven 1.0. It will create a single big JAR + including all dependencies, so no additional entry is necessary for + the classpath. </p> <p> - The plug-in is used on Windows 2000 and SUSE Linux 8.1 therefore - it should work on all major platforms. + The plug-in is used on Windows 2000, Gentoo and SUSE Linux 8.1 + therefore it should work on all major platforms. </p> <p> Currently there is the UBERJAR plugin available doing a similiar job but due to performance problems in the class loader I would not recommended it for larger projects. </p> - <p> Just in case you have multiple project distributables (e.g. one executable JAR and a WAR file in my case) it might be useful - to clean the temporary files in between those targets + to clean the temporary files in between those targets. </p> </section> </body> |
From: <jo...@us...> - 2005-08-25 08:34:55
|
joehni 05/08/25 01:34:50 Modified: javaapp project.xml javaapp/xdocs changes.xml Log: Back to snapshot. Revision Changes Path 1.17 +1 -1 maven-plugins/javaapp/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/project.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- project.xml 23 Aug 2005 13:24:05 -0000 1.16 +++ project.xml 25 Aug 2005 08:34:49 -0000 1.17 @@ -6,7 +6,7 @@ <id>maven-javaapp-plugin</id> <name>Java Application Plugin</name> <!-- groupId is in parent --> - <currentVersion>1.3.1</currentVersion> + <currentVersion>1.4-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2002</inceptionYear> <!-- remove package, if parent is fixed --> 1.9 +6 -5 maven-plugins/javaapp/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/xdocs/changes.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- changes.xml 25 Aug 2005 07:57:54 -0000 1.8 +++ changes.xml 25 Aug 2005 08:34:50 -0000 1.9 @@ -13,16 +13,17 @@ <body> + <release version="1.4-SNAPSHOT" date="in CVS"> + </release> <release version="1.3.1" date="2005-08-25"> - <action dev="joehni" type="fix"> - Applied patch from Eric Hartmann for Maven 1.1 compatibility. + <action dev="joehni" type="fix" due-to="Eric Hartmann"> + Applied patch for Maven 1.1 compatibility. </action> <action dev="joehni" type="update"> Updated versions of the plugin's dependencies. </action> - <action dev="wdsgoe" type="fix"> - Applied patch 1121795 from Frank Cornelis to fix broken - javaapp:run + <action dev="wdsgoe" type="fix" due-to="Frank Cornelis" issue="1121795"> + Applied patch to fix broken javaapp:run. </action> </release> <release version="1.3" date="2004-11-19"> |
From: <jo...@us...> - 2005-08-25 07:57:59
|
joehni 05/08/25 00:57:54 Modified: javaapp/xdocs changes.xml Log: Prepare 1.3.1 release. Revision Changes Path 1.8 +7 -1 maven-plugins/javaapp/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/xdocs/changes.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- changes.xml 15 Feb 2005 09:33:07 -0000 1.7 +++ changes.xml 25 Aug 2005 07:57:54 -0000 1.8 @@ -13,7 +13,13 @@ <body> - <release version="1.4" date="as in CVS"> + <release version="1.3.1" date="2005-08-25"> + <action dev="joehni" type="fix"> + Applied patch from Eric Hartmann for Maven 1.1 compatibility. + </action> + <action dev="joehni" type="update"> + Updated versions of the plugin's dependencies. + </action> <action dev="wdsgoe" type="fix"> Applied patch 1121795 from Frank Cornelis to fix broken javaapp:run |
From: Carlos S. <car...@us...> - 2005-08-23 17:53:20
|
carlossg 05/08/23 10:53:13 Modified: cobertura project.xml cobertura/xdocs changes.xml Log: Upgrade to cobertura 1.6 Revision Changes Path 1.17 +1 -1 maven-plugins/cobertura/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/project.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- project.xml 16 Aug 2005 23:02:39 -0000 1.16 +++ project.xml 23 Aug 2005 17:53:13 -0000 1.17 @@ -58,7 +58,7 @@ <dependency> <groupId>cobertura</groupId> <artifactId>cobertura</artifactId> - <version>1.5</version> + <version>1.6</version> <url>http://cobertura.sourceforge.net</url> </dependency> <dependency> 1.10 +1 -1 maven-plugins/cobertura/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/changes.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- changes.xml 5 Aug 2005 17:04:58 -0000 1.9 +++ changes.xml 23 Aug 2005 17:53:13 -0000 1.10 @@ -23,7 +23,7 @@ </properties> <body> <release version="1.1.1" date="in CVS"> - <action dev="carlossg" type="update">Upgrade to cobertura 1.5.</action> + <action dev="carlossg" type="update">Upgrade to cobertura 1.6.</action> </release> <release version="1.1" date="2005-07-21"> <action dev="carlossg" type="add">Added cobertura check reports with classes that don't meet test coverage requirements.</action> |