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: dion g. <dio...@us...> - 2005-06-22 12:17:33
|
diongillard 05/06/22 05:17:22 Modified: dbunit/xdocs changes.xml Log: fix typo Revision Changes Path 1.20 +1 -1 maven-plugins/dbunit/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/changes.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- changes.xml 22 Jun 2005 11:43:40 -0000 1.19 +++ changes.xml 22 Jun 2005 12:17:22 -0000 1.20 @@ -6,7 +6,7 @@ <author email="dio...@so...">dIon Gillard</author> </properties> <body> - <release version="1.6" data="in cvs"> + <release version="1.6" date="in cvs"> <action dev="diongillard" type="add" due-to="Josh Holtzman">Order tables on export.</action> <action dev="dep4b" type="fix" due-to="Fabrizio Giustina" issue="1159028">Support mssql operations and warning for invalid values</action> </release> |
From: dion g. <dio...@us...> - 2005-06-22 11:43:47
|
diongillard 05/06/22 04:43:41 Modified: dbunit/src/main/net/sourceforge/mavenplugins/dbunit DataSetTool.java dbunit/xdocs changes.xml Log: Order dataset on export. Thanks to Josh Holtzman Revision Changes Path 1.6 +22 -2 maven-plugins/dbunit/src/main/net/sourceforge/mavenplugins/dbunit/DataSetTool.java Index: DataSetTool.java =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/src/main/net/sourceforge/mavenplugins/dbunit/DataSetTool.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- DataSetTool.java 9 May 2005 12:26:44 -0000 1.5 +++ DataSetTool.java 22 Jun 2005 11:43:40 -0000 1.6 @@ -58,9 +58,12 @@ import org.apache.commons.lang.StringUtils; import org.dbunit.DatabaseUnitException; +import org.dbunit.database.DatabaseSequenceFilter; import org.dbunit.database.IDatabaseConnection; import org.dbunit.dataset.DataSetException; +import org.dbunit.dataset.FilteredDataSet; import org.dbunit.dataset.IDataSet; +import org.dbunit.dataset.filter.ITableFilter; import org.dbunit.ext.mssql.InsertIdentityOperation; import org.dbunit.operation.DatabaseOperation; @@ -146,8 +149,25 @@ */ private IDataSet getDataSet(IDatabaseConnection connection) throws SQLException { - if (getExportTables() == null) return connection.createDataSet(); - return connection.createDataSet(StringUtils.split(getExportTables(), ",")); + IDataSet dataSet = null; + if (getExportTables() == null) + { + dataSet = connection.createDataSet(); + } + else + { + String[] tables = StringUtils.split(getExportTables(), ","); + dataSet = connection.createDataSet(tables); + } + try + { + ITableFilter filter = new DatabaseSequenceFilter(connection); + return new FilteredDataSet(filter, dataSet); + } + catch (DataSetException e) + { + throw new SQLException(e.getMessage()); + } } /** 1.19 +1 -0 maven-plugins/dbunit/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/changes.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- changes.xml 9 May 2005 12:26:45 -0000 1.18 +++ changes.xml 22 Jun 2005 11:43:40 -0000 1.19 @@ -7,6 +7,7 @@ </properties> <body> <release version="1.6" data="in cvs"> + <action dev="diongillard" type="add" due-to="Josh Holtzman">Order tables on export.</action> <action dev="dep4b" type="fix" due-to="Fabrizio Giustina" issue="1159028">Support mssql operations and warning for invalid values</action> </release> <release version="1.5" date="2004-08-27"> |
From: Eric P. <de...@us...> - 2005-06-20 19:35:29
|
dep4b 05/06/20 12:35:23 Modified: findbugs/xdocs changes.xml findbugs project.xml Log: prepare for 0.9.1 release Revision Changes Path 1.19 +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.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- changes.xml 18 Jun 2005 13:04:29 -0000 1.18 +++ changes.xml 20 Jun 2005 19:35:22 -0000 1.19 @@ -27,7 +27,7 @@ Added maven.findbugs.includeFilter property. </action> </release> - <release version="0.8.6" date=""> + <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> 1.23 +6 -1 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- project.xml 18 Jun 2005 12:53:28 -0000 1.22 +++ project.xml 20 Jun 2005 19:35:23 -0000 1.23 @@ -6,7 +6,7 @@ <id>maven-findbugs-plugin</id> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.9.1-SNAPSHOT</currentVersion> + <currentVersion>0.9.1</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -26,6 +26,11 @@ <name>0.8.4</name> <tag>MAVEN_FINDBUGS_0_8_4</tag> </version> + <version> + <id>0.9.1</id> + <name>0.9.1</name> + <tag>MAVEN_FINDBUGS_0_9_1</tag> + </version> </versions> <!-- mailingLists is in parent --> |
From: Geoffrey De S. <ge0...@us...> - 2005-06-19 15:01:13
|
ge0ffrey 05/06/19 08:01:05 Modified: . maven.xml Log: updated touches for the jaxb plugin upgrade to jwsdp 1.5 Revision Changes Path 1.33 +25 -16 maven-plugins/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven.xml,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- maven.xml 3 Jun 2005 13:58:12 -0000 1.32 +++ maven.xml 19 Jun 2005 15:01:05 -0000 1.33 @@ -11,7 +11,7 @@ <!-- Faking any non-free or not on ibiblio runtime dependencies --> <ant:echo> WARNING WARNING WARNING - + Creating empty files for non-free or unavailable runtime dependencies WARNING WARNING WARNING @@ -25,22 +25,31 @@ <!-- for the sdocbook plugin --> <ant:mkdir dir="${maven.repo.local}/jimi/jars/"/> <ant:touch file="${maven.repo.local}/jimi/jars/jimi-1.0.jar"/> - + <!-- for the jdo plugin --> <ant:mkdir dir="${maven.repo.local}/jdo/jars/"/> <ant:touch file="${maven.repo.local}/jdo/jars/jdo-1.0.1.jar"/> <!-- for the jaxb plugin --> - <ant:mkdir dir="${maven.repo.local}/jaxb/jars/"/> - <ant:touch file="${maven.repo.local}/jaxb/jars/jaxb-api-1.0.jar"/> - <ant:touch file="${maven.repo.local}/jaxb/jars/jaxb-xjc-1.0.jar"/> - <ant:touch file="${maven.repo.local}/jaxb/jars/jaxb-libs-1.0.jar"/> - <ant:touch file="${maven.repo.local}/jaxb/jars/jaxb-ri-1.0.jar"/> + <ant:mkdir dir="${maven.repo.local}/jwsdp/jwsdp/"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/dom-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/jax-qname-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/jaxb-api-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/jaxb-impl-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/jaxb-libs-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/jaxb-xjc-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/jaxp-api-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/namespace-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/relaxngDatatype-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/sax-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/xalan-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/xercesImpl-jwsdp.1.5.jar"/> + <ant:touch file="${maven.repo.local}/jwsdp/jars/xsdlib-jwsdp.1.5.jar"/> <!-- for the jaxb plugin --> <ant:mkdir dir="${maven.repo.local}/jaxrpc/jars/"/> <ant:touch file="${maven.repo.local}/jaxrpc/jars/jaxrpc-1.0.jar"/> - + <!-- for the middlegen plugin --> <ant:mkdir dir="${maven.repo.local}/middlegen/jars/"/> <ant:touch file="${maven.repo.local}/middlegen/jars/middlegen-2.0-vo.jar"/> @@ -48,25 +57,25 @@ <!-- TODO: This shouldn't be here --> <ant:mkdir dir="${maven.repo.local}/hibernate/jars/"/> <ant:touch file="${maven.repo.local}/hibernate/jars/hibernate-tools-2.1.2.jar"/> - + <!-- for the dotuml plugin --> <ant:mkdir dir="${maven.repo.local}/umlgraph/jars/"/> <ant:touch file="${maven.repo.local}/umlgraph/jars/umlgraph-2.8.jar"/> - + <!-- for the strutsdoc plugin --> <ant:mkdir dir="${maven.repo.local}/strutsdoc/jars/"/> - <ant:touch file="${maven.repo.local}/strutsdoc/jars/strutsdoc-0.5.jar"/> - + <ant:touch file="${maven.repo.local}/strutsdoc/jars/strutsdoc-0.5.jar"/> + <!-- for the transform plugin --> <ant:mkdir dir="${maven.repo.local}/jai/jars/"/> <ant:touch file="${maven.repo.local}/jai/jars/jai_codec-1.1.2.jar"/> <ant:touch file="${maven.repo.local}/jai/jars/jai_core-1.1.2.jar"/> <ant:mkdir dir="${maven.repo.local}/docbook-xsl/jars/"/> <ant:touch file="${maven.repo.local}/docbook-xsl/jars/saxon-extension-6.5.1.jar"/> - + <!-- for the weblogic plugin --> <ant:mkdir dir="${maven.repo.local}/weblogic/jars/"/> - <ant:touch file="${maven.repo.local}/weblogic/jars/weblogic-8.1.2.0.jar"/> + <ant:touch file="${maven.repo.local}/weblogic/jars/weblogic-8.1.2.0.jar"/> </goal> <goal name="plugins:clean"> @@ -118,11 +127,11 @@ <ant:copy todir="${dir}/maven-plugins" file="${pom.parent.file.parent}/LICENSE.txt" /> <ant:copy todir="${dir}/maven-plugins" file="${pom.parent.file.parent}/plugin-project.xml" /> </postGoal> - + <preGoal name="xdoc:jelly-transform"> <attainGoal name="faq"/> </preGoal> - + <preGoal name="multiproject:site"> <attainGoal name="generate-navigation"/> </preGoal> |
From: Geoffrey De S. <ge0...@us...> - 2005-06-19 14:10:39
|
ge0ffrey 05/06/19 07:10:29 Modified: jaxb/xdocs changes.xml goals.xml index.xml navigation.xml properties.xml jaxb .cvsignore plugin.jelly plugin.properties project.xml Log: Upgrade to JSWDP 1.5, added extra properties. See changes.xml Revision Changes Path 1.2 +15 -0 maven-plugins/jaxb/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/xdocs/changes.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- changes.xml 11 Nov 2003 23:27:51 -0000 1.1 +++ changes.xml 19 Jun 2005 14:10:28 -0000 1.2 @@ -6,6 +6,21 @@ </properties> <body> + <release version="1.1.0" date="2005-06-19"> + <action dev="ge0ffrey" type="update"> + Upgraded to JAXB included in JWSDP 1.5 + </action> + <action dev="ge0ffrey" type="add"> + Include support for package and extension attributes + </action> + <action dev="ge0ffrey" type="add"> + Include support for bindings + </action> + <action dev="ge0ffrey" type="fix"> + Only generate if jaxb src directory does not exist instead of when the property isn't set + to work better in a POM extended context + </action> + </release> <release version="1.0.0" date="2003-11-12"> <action dev="bporter" type="add"> Current version, for JAXB 1.0 1.2 +3 -3 maven-plugins/jaxb/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/xdocs/goals.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- goals.xml 11 Nov 2003 23:27:51 -0000 1.1 +++ goals.xml 19 Jun 2005 14:10:28 -0000 1.2 @@ -11,7 +11,7 @@ <p> <strong>Note:</strong> The goals in this plugin are only executed when the <a href="properties.html">maven.jaxb.src.dir</a> property - is set. + is set to an existing directory. </p> <table> <tr><th>Goal</th><th>Description</th></tr> @@ -19,9 +19,9 @@ <td>jaxb:generate</td> <td> <p> - Generates code for all XSD files in the + Generates Java source files for all XSD files in the <a href="properties.html">${maven.jaxb.src.dir}</a> - directory, or just those listed in <a href="properties.html">${maven.jaxb.schemas}</a>. + directory. </p> <p> This goal is called before the <code>java:compile</code> 1.3 +9 -7 maven-plugins/jaxb/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/xdocs/index.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- index.xml 23 Apr 2004 23:30:48 -0000 1.2 +++ index.xml 19 Jun 2005 14:10:28 -0000 1.3 @@ -13,21 +13,23 @@ </p> <subsection name="Installation"> <p> - You must first download JAXB from Sun to obtain the appropriate JAR files. It is part of the Java Web Services Developer Pack (JWSDP 1.1 - ie JAXB 1.0). + You must first download JAXB from Sun to obtain the appropriate JAR files. + It is part of the Java Web Services Developer Pack (JWSDP 1.5). </p> <p> - See the <a href="http://java.sun.com/jaxb/">JAXB web site</a> for more information. + See the <a href="http://java.sun.com/xml/jaxb/">JAXB web site</a> + and the <a href="http://java.sun.com/webservices/jwsdp/">JWSDP web site</a> + for more information. </p> <p> - Copy the 4 JAXB JAR files (jaxb-api, jaxb-libs, jaxb-ri, jaxb-xjc) into - ~/.maven/repository/jaxb/jars, and the jaxrpc JAR into ~/.maven/repository/jaxrpc/jars. You must rename each of the JARs to add the -1.0 version - eg jaxb-api-1.0.jar. + Copy <a href="dependencies.html">the dependend JWSDP JAR files</a> into + <code>~/.maven/repository/jswdp/jars</code>. + You must rename each of the JARs to add the <code>jwsdp.1.5</code> version, + for example <code>jaxb-api-jwsdp.1.5.jar</code>. </p> <p> To install the plugin, simply download the plugin JAR file and copy it into $MAVEN_HOME/plugins. </p> - <p> - The current version of the plugin has not been tested with the more recent JAXB version 1.0.1 or above! - </p> </subsection> <subsection name="Usage"> <p> 1.2 +4 -3 maven-plugins/jaxb/xdocs/navigation.xml Index: navigation.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/xdocs/navigation.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- navigation.xml 11 Nov 2003 23:27:51 -0000 1.1 +++ navigation.xml 19 Jun 2005 14:10:28 -0000 1.2 @@ -5,11 +5,12 @@ <body> <links> - <item name="Maven" href="http://maven.apache.org/turbine/maven/"/> - <item name="JAXB" href="http://java.sun.com/xml/jaxb/"/> + <item name="Maven" href="http://maven.apache.org/turbine/maven/"/> + <item name="JAXB" href="http://java.sun.com/xml/jaxb/"/> + <item name="JWSDP" href="http://java.sun.com/webservices/jwsdp/"/> </links> <menu name="Overview"> - <item name="Goals" href="/goals.html" /> + <item name="Goals" href="/goals.html" /> <item name="Properties" href="/properties.html" /> <item name="Release Notes" href="/changes-report.html" /> </menu> 1.2 +54 -5 maven-plugins/jaxb/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/xdocs/properties.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- properties.xml 11 Nov 2003 23:27:51 -0000 1.1 +++ properties.xml 19 Jun 2005 14:10:28 -0000 1.2 @@ -16,16 +16,65 @@ </tr> <tr> <td>maven.jaxb.src.dir</td> - <td>No</td> + <td>Yes</td> <td> Sets the directory for the XML schemas. + Default value is <code>${maven.src.dir}/jaxb</code>. + </td> + </tr> + <tr> + <td>maven.jaxb.package</td> + <td>No</td> + <td> + Sets the package property for the JAXB source generator. + </td> + </tr> + <tr> + <td>maven.jaxb.extension</td> + <td>Yes</td> + <td> + Sets the extension property for the JAXB source generator. + Default value is <code>false</code>. + </td> + </tr> + <tr> + <td>maven.jaxb.build.dir</td> + <td>Yes</td> + <td> + Sets the output directory for the Java sources genereated based on the XML schemas. + Default value is <code>${maven.build.dir}/jaxb</code>. + </td> + </tr> + <tr> + <td>maven.jaxb.schemas.includes</td> + <td>Yes</td> + <td> + Sets the XML schemas to include. Paths are relative to <code>maven.jaxb.src.dir</code>. + Default value is <code>**/*.xsd</code>. + </td> + </tr> + <tr> + <td>maven.jaxb.schemas.excludes</td> + <td>Yes</td> + <td> + Sets the XML schemas to exclude. Paths are relative to <code>maven.jaxb.src.dir</code>. + Default value is empty. + </td> + </tr> + <tr> + <td>maven.jaxb.bindings.includes</td> + <td>Yes</td> + <td> + Sets the XML bindings to include. Paths are relative to <code>maven.jaxb.src.dir</code>. + Default value is <code>**/*.xjb</code>. </td> </tr> <tr> - <td>maven.jaxb.schemas</td> + <td>maven.jaxb.bindings.excludes</td> <td>Yes</td> <td> - Sets the XML schemas to use. Paths are relative to <code>maven.jaxb.src.dir</code>. + Sets the XML bindings to exclude. Paths are relative to <code>maven.jaxb.src.dir</code>. + Default value is empty. </td> </tr> </table> @@ -43,7 +92,7 @@ <td> This is the directory that output files are generated to. The JAXB generated code is placed in the <code>JAXB</code> - directory below this + directory below this. </td> </tr> <tr> @@ -52,7 +101,7 @@ <td> The source directories maven uses to compile java code. The JAXB plugin adds the directory it generates code to - this path, so that generated code is compiled seamlessly + this path, so that generated code is compiled seamlessly. </td> </tr> </table> 1.2 +10 -2 maven-plugins/jaxb/.cvsignore Index: .cvsignore =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- .cvsignore 11 Nov 2003 23:27:51 -0000 1.1 +++ .cvsignore 19 Jun 2005 14:10:29 -0000 1.2 @@ -1,4 +1,12 @@ -velocity.log -maven.log +# Maven local files +build.properties target +# Maven logs +*.log +*.log.* + +# IDEA project files +*.iml +*.ipr +*.iws 1.2 +35 -51 maven-plugins/jaxb/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/plugin.jelly,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.jelly 11 Nov 2003 23:27:51 -0000 1.1 +++ plugin.jelly 19 Jun 2005 14:10:29 -0000 1.2 @@ -2,65 +2,49 @@ <project xmlns:j="jelly:core" xmlns:util="jelly:util" xmlns:maven="jelly:maven" xmlns:ant="jelly:ant"> - <j:set var="jaxbSrcDir" value="${maven.jaxb.src.dir}"/> - <j:set var="jaxbSchemas" value="${maven.jaxb.schemas}"/> - <goal name="jaxb:prepare-filesystem"> - <j:if test="${!jaxbSrcDir.equals('MAVEN_JAXB_SRC_DIR_NOT_SET')}"> - <ant:mkdir dir="${maven.build.dir}/jaxb"/> - </j:if> + <ant:mkdir dir="${maven.jaxb.build.dir}"/> </goal> - <goal name="jaxb:generate" - prereqs="jaxb:prepare-filesystem"> - <j:if test="${!jaxbSrcDir.equals('MAVEN_JAXB_SRC_DIR_NOT_SET')}"> - <ant:path id="maven.jaxb.compile.src.set" - location="${maven.build.dir}/jaxb"/> - - <maven:addPath id="maven.compile.src.set" - refid="maven.jaxb.compile.src.set"/> - - <ant:taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask" /> - <!-- TODO: use this for src.dir, but smarter for individual schemas --> - <!-- TODO: it seems that if target exists but the flagfile doesn't, it doesn't compile? --> - <ant:uptodate property="maven.jaxb.buildNotRequired" targetfile="${maven.build.dir}/jaxb/.flagfile"> - <ant:srcfiles - dir = "${maven.jaxb.src.dir}" - includes = "*.xsd"/> - </ant:uptodate> - <j:set var="jaxbBuildNotRequired" value="${maven.jaxb.buildNotRequired}" /> - <j:if test="${jaxbBuildNotRequired == null}"> - <j:if test="${jaxbSchemas.equals('MAVEN_JAXB_SCHEMAS_NOT_SET')}"> - <xjc target="${maven.build.dir}/jaxb"> - <ant:schema dir="${maven.jaxb.src.dir}" includes="*.xsd" /> - <ant:classpath> - <ant:pathelement path="${maven.build.dest}" /> - </ant:classpath> - </xjc> - </j:if> - <j:if test="${!jaxbSchemas.equals('MAVEN_JAXB_SCHEMAS_NOT_SET')}"> - <util:tokenize var="schemas" delim=" "> - ${maven.jaxb.schemas} - </util:tokenize> - <j:forEach var="schema" items="${schemas.iterator()}"> - <xjc target="${maven.build.dir}/jaxb" schema="${maven.jaxb.src.dir}/${schema}"> - <ant:classpath> - <ant:pathelement path="${maven.build.dest}" /> - </ant:classpath> - </xjc> - </j:forEach> - </j:if> - <ant:copy todir="${maven.build.dest}"> - <ant:fileset dir="${maven.build.dir}/jaxb" includes="**/*.properties,**/bgm.ser" /> - </ant:copy> - <ant:touch file="${maven.build.dir}/jaxb/.flagfile" /> - </j:if> + <goal name="jaxb:generate" prereqs="jaxb:prepare-filesystem"> + <ant:taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask" /> + <!-- TODO: use this for src.dir, but smarter for individual schemas --> + <!-- TODO: it seems that if target exists but the flagfile doesn't, it doesn't compile? --> + <ant:uptodate property="maven.jaxb.buildNotRequired" targetfile="${maven.jaxb.build.dir}/.flagfile"> + <ant:srcfiles dir="${maven.jaxb.src.dir}" + includes="${maven.jaxb.schema.includes}" + excludes="${maven.jaxb.schema.excludes}"/> + <ant:srcfiles dir="${maven.jaxb.src.dir}" + includes="${maven.jaxb.bindings.includes}" + excludes="${maven.jaxb.bindings.excludes}"/> + </ant:uptodate> + <j:set var="jaxbBuildNotRequired" value="${maven.jaxb.buildNotRequired}" /> + <j:if test="${jaxbBuildNotRequired == null}"> + <xjc extension="${maven.jaxb.extension}" package="${maven.jaxb.package}" + target="${maven.jaxb.build.dir}"> + <schema dir="${maven.jaxb.src.dir}" + includes="${maven.jaxb.schema.includes}" + excludes="${maven.jaxb.schema.excludes}"/> + <binding dir="${maven.jaxb.src.dir}" + includes="${maven.jaxb.bindings.includes}" + excludes="${maven.jaxb.bindings.excludes}"/> + <ant:classpath> + <ant:pathelement path="${maven.build.dest}" /> + </ant:classpath> + </xjc> + <ant:touch file="${maven.jaxb.build.dir}/.flagfile" /> + <ant:copy todir="${maven.build.dest}"> + <ant:fileset dir="${maven.jaxb.build.dir}" includes="**/*.properties,**/bgm.ser" /> + </ant:copy> </j:if> + <ant:path id="maven.jaxb.compile.src.set" location="${maven.jaxb.build.dir}"/> + <maven:addPath id="maven.compile.src.set" refid="maven.jaxb.compile.src.set"/> </goal> <preGoal name="java:compile"> - <j:if test="${!jaxbSrcDir.equals('MAVEN_JAXB_SRC_DIR_NOT_SET')}"> + <util:file var="jaxbSrcDir" name="${maven.jaxb.src.dir}" /> + <j:if test="${jaxbSrcDir.exists()}"> <attainGoal name="jaxb:generate"/> </j:if> </preGoal> 1.2 +14 -2 maven-plugins/jaxb/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/plugin.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.properties 11 Nov 2003 23:27:51 -0000 1.1 +++ plugin.properties 19 Jun 2005 14:10:29 -0000 1.2 @@ -1,2 +1,14 @@ -maven.jaxb.src.dir=MAVEN_JAXB_SRC_DIR_NOT_SET -maven.jaxb.schemas=MAVEN_JAXB_SCHEMAS_NOT_SET +maven.jaxb.src.dir = ${maven.src.dir}/jaxb +maven.jaxb.build.dir = ${maven.build.dir}/jaxb +# TODO as as maven supports maven.compile.resources.set +# Include the following properties +# maven.jaxb.generated.java.dir = ${maven.build.dir}/generated-java +# maven.jaxb.generated.resources.dir = ${maven.build.dir}/generated-resources + +maven.jaxb.schema.includes = **/*.xsd +maven.jaxb.schema.excludes = +maven.jaxb.bindings.includes = **/*.xjb +maven.jaxb.bindings.excludes = + +maven.jaxb.extension = false +maven.jaxb.package = 1.5 +125 -14 maven-plugins/jaxb/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/project.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- project.xml 15 Oct 2004 11:17:33 -0000 1.4 +++ project.xml 19 Jun 2005 14:10:29 -0000 1.5 @@ -3,7 +3,7 @@ <extend>${basedir}/../plugin-project.xml</extend> <id>maven-jaxb-plugin</id> <name>Maven JAXB Plugin</name> - <currentVersion>1.0</currentVersion> + <currentVersion>1.1.0</currentVersion> <inceptionYear>2002</inceptionYear> <description> @@ -29,46 +29,157 @@ <role>Documentation</role> </roles> </developer> + <developer> + <name>Geoffrey De Smet</name> + <id>ge0ffrey</id> + <email>ge0ffrey_AT_users_DOT_sourceforge_DOT_net</email> + <organization>JCS Int.</organization> + <organizationUrl>http://www.jcs.be</organizationUrl> + <roles> + <role>Java Developer</role> + </roles> + <url>http://users.pandora.be/geoffrey</url> + <timezone>+1</timezone> + </developer> </developers> + <contributors> + <contributor> + <name>Nico De Groote</name> + <email>ndg_DOT_jcs_DOT_be</email> + <organization>JCS Int.</organization> + <organizationUrl>http://www.jcs.be</organizationUrl> + <roles> + <role>Java Developer</role> + </roles> + <timezone>+1</timezone> + </contributor> + </contributors> <dependencies> - <!-- if any of the jaxb/jaxrpc dependencies are updated remember to update ../maven-xml --> + <!-- If any of the non-free dependencies are updated remember to update ../maven.xml --> + + <!-- All of these artifacts are referenced to the JWSDP version --> + <!-- because some of these artifacts don't have their own version number --> + <!-- for example Sun's xercesImpl hack --> + <!-- Some artifacts could be referred to their own version and groupid, --> + <!-- for example for jaxb, but this would make installing the jars harder. --> + <!-- Currently jaxb isn't distributed on its own anyway.--> <dependency> - <groupId>jaxb</groupId> + <groupId>jwsdp</groupId> <artifactId>jaxb-api</artifactId> - <version>1.0</version> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + <dependency> + <groupId>jwsdp</groupId> + <artifactId>jaxb-impl</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> <properties> <classloader>root</classloader> </properties> </dependency> <dependency> - <groupId>jaxb</groupId> + <groupId>jwsdp</groupId> <artifactId>jaxb-xjc</artifactId> - <version>1.0</version> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> <properties> <classloader>root</classloader> </properties> </dependency> <dependency> - <groupId>jaxb</groupId> + <groupId>jwsdp</groupId> <artifactId>jaxb-libs</artifactId> - <version>1.0</version> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + + <dependency> + <groupId>jwsdp</groupId> + <artifactId>jax-qname</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + <dependency> + <groupId>jwsdp</groupId> + <artifactId>namespace</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + <dependency> + <groupId>jwsdp</groupId> + <artifactId>relaxngDatatype</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + <dependency> + <groupId>jwsdp</groupId> + <artifactId>xsdlib</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + + <!-- In JDK 1.5 these dependencies are not required. In JDK 1.4 they are required. --> + <dependency> + <groupId>jwsdp</groupId> + <artifactId>jaxp-api</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + <dependency> + <groupId>jwsdp</groupId> + <artifactId>dom</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> + <properties> + <classloader>root</classloader> + </properties> + </dependency> + <dependency> + <groupId>jwsdp</groupId> + <artifactId>sax</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> <properties> <classloader>root</classloader> </properties> </dependency> <dependency> - <groupId>jaxb</groupId> - <artifactId>jaxb-ri</artifactId> - <version>1.0</version> + <groupId>jwsdp</groupId> + <artifactId>xalan</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> <properties> <classloader>root</classloader> </properties> </dependency> <dependency> - <groupId>jaxrpc</groupId> - <artifactId>jaxrpc</artifactId> - <version>1.0</version> + <groupId>jwsdp</groupId> + <artifactId>xercesImpl</artifactId> + <version>jwsdp.1.5</version> + <url>http://java.sun.com/webservices/jwsdp</url> <properties> <classloader>root</classloader> </properties> |
From: Geoffrey De S. <ge0...@us...> - 2005-06-19 13:20:00
|
ge0ffrey 05/06/19 06:19:53 Modified: izpack project.xml Log: replace \t with spaces Revision Changes Path 1.6 +7 -7 maven-plugins/izpack/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/izpack/project.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- project.xml 16 May 2005 12:47:06 -0000 1.5 +++ project.xml 19 Jun 2005 13:19:52 -0000 1.6 @@ -56,13 +56,13 @@ <url>http://users.pandora.be/geoffrey</url> <timezone>+1</timezone> </developer> - <developer> - <name>Philip Dodds</name> - <id>pdodds</id> - <email>pdodds_AT_unity-systems.com</email> - <organization>Unity Systems</organization> - <timezone>0</timezone> - </developer> + <developer> + <name>Philip Dodds</name> + <id>pdodds</id> + <email>pdodds_AT_unity-systems.com</email> + <organization>Unity Systems</organization> + <timezone>0</timezone> + </developer> </developers> <dependencies> <dependency> |
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: Eric P. <de...@us...> - 2005-06-18 12:53:38
|
dep4b 05/06/18 05:53:29 Modified: findbugs project.xml Log: Move to 0.9.1 version of FindBugs Revision Changes Path 1.22 +2 -25 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- project.xml 6 May 2005 22:05:01 -0000 1.21 +++ project.xml 18 Jun 2005 12:53:28 -0000 1.22 @@ -6,7 +6,7 @@ <id>maven-findbugs-plugin</id> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.8.8-SNAPSHOT</currentVersion> + <currentVersion>0.9.1-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -63,30 +63,7 @@ <!-- licenses section not done yet --> <dependencies> - <!--dependency> - <groupId>findbugs</groupId> - <artifactId>findbugs</artifactId> - <version>0.8.6</version> - <url>http://findbugs.sourceforge.net/</url> - </dependency> - <dependency> - <groupId>findbugs</groupId> - <artifactId>findbugs-ant</artifactId> - <version>0.8.6</version> - <url>http://findbugs.sourceforge.net/</url> - </dependency> - <dependency> - <groupId>findbugs</groupId> - <artifactId>findbugs-coreplugin</artifactId> - <version>0.8.6</version> - <url>http://findbugs.sourceforge.net/</url> - </dependency> - <dependency> - <groupId>findbugs</groupId> - <artifactId>findbugs-bcel</artifactId> - <version>0.8.6</version> - <url>http://findbugs.sourceforge.net/</url> - </dependency--> + <!-- Findbugs Jars are in src/plugin-resources/jars --> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> |
From: Eric P. <de...@us...> - 2005-06-18 12:53:20
|
dep4b 05/06/18 05:53:13 Modified: findbugs/src/plugin-resources/jars findbugs-ant.jar findbugs.jar coreplugin.jar Removed: findbugs/src/plugin-resources/jars findbugsAnnotations.jar Log: Move to 0.9.1 version of FindBugs Revision Changes Path 1.3 +45 -46 maven-plugins/findbugs/src/plugin-resources/jars/findbugs-ant.jar <<Binary file>> 1.3 +3195 -2760maven-plugins/findbugs/src/plugin-resources/jars/findbugs.jar <<Binary file>> 1.3 +1267 -1056maven-plugins/findbugs/src/plugin-resources/jars/coreplugin.jar <<Binary file>> |
From: Jamie B. <jbi...@us...> - 2005-06-17 19:32:44
|
jbisotti 05/06/17 12:32:38 Modified: cobertura project.xml Added: cobertura project.properties Log: Adding some reports to the site. Revision Changes Path 1.4 +9 -0 maven-plugins/cobertura/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- project.xml 17 Jun 2005 16:45:10 -0000 1.3 +++ project.xml 17 Jun 2005 19:32:37 -0000 1.4 @@ -90,5 +90,14 @@ <url>http://www.kclee.de/clemens/java/javancss/</url> </dependency> </dependencies> + <reports> + <report>maven-changelog-plugin</report> + <report>maven-changes-plugin</report> + <report>maven-developer-activity-plugin</report> + <report>maven-faq-plugin</report> + <report>maven-file-activity-plugin</report> + <report>maven-license-plugin</report> + <report>maven-linkcheck-plugin</report> + </reports> </project> 1.1 maven-plugins/cobertura/project.properties Index: project.properties =================================================================== # ------------------------------------------------------------------- # Copyright 2001-2005 The Apache Software Foundation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ------------------------------------------------------------------- maven.license.licenseFile=${basedir}/../LICENSE.txt |
From: Jamie B. <jbi...@us...> - 2005-06-17 16:45:17
|
jbisotti 05/06/17 09:45:11 Modified: cobertura project.xml Log: Added myself to the <developers> section. Revision Changes Path 1.3 +6 -0 maven-plugins/cobertura/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/project.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- project.xml 17 Jun 2005 16:43:20 -0000 1.2 +++ project.xml 17 Jun 2005 16:45:10 -0000 1.3 @@ -39,6 +39,12 @@ <id>carlossg</id> <email>ca...@ap...</email> </developer> + <developer> + <name>Jamie Bisotti</name> + <id>jbisotti</id> + <email>jbi...@gm...</email> + <timezone>-4</timezone> + </developer> </developers> <dependencies> <dependency> |
From: Jamie B. <jbi...@us...> - 2005-06-17 16:43:41
|
jbisotti 05/06/17 09:43:31 Modified: cobertura project.xml cobertura/xdocs changes.xml Log: Changed version from 1.0 to 1.4.1. Using 1.4 because that is the version of Cobertura this plugin supports. Using ".1" becuase there is already a 1.4 version, attached to a JCoverage JIRA issue, in use. Revision Changes Path 1.2 +68 -74 maven-plugins/cobertura/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/project.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- project.xml 10 Jun 2005 06:16:44 -0000 1.1 +++ project.xml 17 Jun 2005 16:43:20 -0000 1.2 @@ -1,5 +1,4 @@ <?xml version="1.0" encoding="UTF-8"?> - <!-- /* * Copyright 2001-2005 The Apache Software Foundation. @@ -18,77 +17,72 @@ */ --> <project> - <extend>${basedir}/../plugin-project.xml</extend> - <pomVersion>3</pomVersion> - <artifactId>maven-cobertura-plugin</artifactId> - <name>Cobertura Plug-in</name> - <currentVersion>1.0-SNAPSHOT</currentVersion> - <inceptionYear>2005</inceptionYear> - <description>Maven Plugin for Cobertura</description> - <shortDescription>Maven Plugin for Cobertura</shortDescription> - <url>http://maven-plugins.sourceforge.net/maven-cobertura-plugin</url> - <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/cobertura</connection> - <developerConnection>scm:cvs:ssh:use...@cv...:/cvsroot/maven-plugins:maven-plugins/cobertura</developerConnection> - <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/cobertura/</url> - </repository> - - <versions> - </versions> - - <developers> - <developer> - <name>Carlos Sanchez</name> - <id>carlossg</id> - <email>ca...@ap...</email> - <roles> - <role>Software Developer</role> - </roles> - </developer> - </developers> - <dependencies> - <dependency> - <groupId>cobertura</groupId> - <artifactId>cobertura</artifactId> - <version>1.4</version> - <url>http://cobertura.sourceforge.net</url> - </dependency> - <dependency> - <groupId>oro</groupId> - <artifactId>oro</artifactId> - <version>2.0.8</version> - <url>http://asm.objectweb.org</url> - </dependency> - <dependency> - <groupId>asm</groupId> - <artifactId>asm</artifactId> - <version>2.0</version> - <url>http://asm.objectweb.org</url> - </dependency> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.8</version> - <url>http://logging.apache.org/log4j</url> - </dependency> - <dependency> - <groupId>urbanophile</groupId> - <artifactId>java-getopt</artifactId> - <version>1.0.9</version> - <url>http://www.urbanophile.com/arenn/hacking/download.html</url> - </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> - </dependency> - </dependencies> - + <extend>${basedir}/../plugin-project.xml</extend> + <pomVersion>3</pomVersion> + <id>maven-cobertura-plugin:maven-cobertura-plugin</id> + <artifactId>maven-cobertura-plugin</artifactId> + <name>Cobertura Plug-in</name> + <groupId>maven-cobertura-plugin</groupId> + <currentVersion>1.4.1</currentVersion> + <inceptionYear>2005</inceptionYear> + <description>Maven Plugin for Cobertura</description> + <shortDescription>Maven Plugin for Cobertura</shortDescription> + <url>http://maven-plugins.sourceforge.net/maven-cobertura-plugin</url> + <repository> + <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/cobertura</connection> + <developerConnection>scm:cvs:ssh:use...@cv...:/cvsroot/maven-plugins:maven-plugins/cobertura</developerConnection> + <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/cobertura/</url> + </repository> + <developers> + <developer> + <name>Carlos Sanchez</name> + <id>carlossg</id> + <email>ca...@ap...</email> + </developer> + </developers> + <dependencies> + <dependency> + <groupId>cobertura</groupId> + <artifactId>cobertura</artifactId> + <version>1.4</version> + <url>http://cobertura.sourceforge.net</url> + </dependency> + <dependency> + <groupId>oro</groupId> + <artifactId>oro</artifactId> + <version>2.0.8</version> + <url>http://asm.objectweb.org</url> + </dependency> + <dependency> + <groupId>asm</groupId> + <artifactId>asm</artifactId> + <version>2.0</version> + <url>http://asm.objectweb.org</url> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.8</version> + <url>http://logging.apache.org/log4j</url> + </dependency> + <dependency> + <groupId>urbanophile</groupId> + <artifactId>java-getopt</artifactId> + <version>1.0.9</version> + <url>http://www.urbanophile.com/arenn/hacking/download.html</url> + </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> + </dependency> + </dependencies> </project> + 1.3 +2 -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.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- changes.xml 17 Jun 2005 16:34:52 -0000 1.2 +++ changes.xml 17 Jun 2005 16:43:30 -0000 1.3 @@ -23,7 +23,8 @@ <title>Changes</title> </properties> <body> - <release version="1.0-SNAPSHOT" date="IN CVS"> + <release version="1.4.1" date="IN CVS"> + Initial release; supports Cobertura 1.4. </release> </body> </document> |
From: Jamie B. <jbi...@us...> - 2005-06-17 16:34:58
|
jbisotti 05/06/17 09:34:52 Modified: cobertura plugin.jelly plugin.properties cobertura/xdocs changes.xml goals.xml index.xml navigation.xml properties.xml Log: Adding license header/updating existing license header to include 2005. Revision Changes Path 1.5 +18 -0 maven-plugins/cobertura/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.jelly,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.jelly 15 Jun 2005 17:59:17 -0000 1.4 +++ plugin.jelly 17 Jun 2005 16:34:51 -0000 1.5 @@ -1,5 +1,23 @@ <?xml version="1.0"?> +<!-- +/* + * Copyright 2001-2004 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + --> + <project xmlns:j="jelly:core" xmlns:ant="jelly:ant" 1.4 +16 -0 maven-plugins/cobertura/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.properties 15 Jun 2005 18:01:50 -0000 1.3 +++ plugin.properties 17 Jun 2005 16:34:51 -0000 1.4 @@ -1,3 +1,19 @@ +# ------------------------------------------------------------------- +# Copyright 2001-2005 The Apache Software Foundation. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ------------------------------------------------------------------- + maven.cobertura.dir=${maven.build.dir}/cobertura maven.cobertura.instrumentation=${maven.cobertura.dir}/classes maven.cobertura.junit.fork=yes 1.2 +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.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- changes.xml 10 Jun 2005 06:24:56 -0000 1.1 +++ changes.xml 17 Jun 2005 16:34:52 -0000 1.2 @@ -2,7 +2,7 @@ <!-- /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. 1.3 +2 -2 maven-plugins/cobertura/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/goals.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- goals.xml 15 Jun 2005 17:59:18 -0000 1.2 +++ goals.xml 17 Jun 2005 16:34:52 -0000 1.3 @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> + <!-- /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +18,6 @@ */ --> - <document> <properties> <title>Maven Cobertura plugin Goals</title> 1.2 +2 -2 maven-plugins/cobertura/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- index.xml 10 Jun 2005 06:16:45 -0000 1.1 +++ index.xml 17 Jun 2005 16:34:52 -0000 1.2 @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> + <!-- /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +18,6 @@ */ --> - <document> <properties> <title>Cobertura Plugin</title> 1.2 +2 -2 maven-plugins/cobertura/xdocs/navigation.xml Index: navigation.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/navigation.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- navigation.xml 10 Jun 2005 06:24:56 -0000 1.1 +++ navigation.xml 17 Jun 2005 16:34:52 -0000 1.2 @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> + <!-- /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +18,6 @@ */ --> - <project> <properties> <title>Cobertura Plugin</title> 1.4 +2 -2 maven-plugins/cobertura/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/properties.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- properties.xml 15 Jun 2005 18:01:50 -0000 1.3 +++ properties.xml 17 Jun 2005 16:34:52 -0000 1.4 @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> + <!-- /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +18,6 @@ */ --> - <document> <properties> <title>Cobertura Plugin Properties</title> |
From: Carlos S. <car...@us...> - 2005-06-15 18:01:56
|
carlossg 05/06/15 11:01:50 Modified: cobertura plugin.properties cobertura/xdocs properties.xml Log: Reset default location of datafile. Seems it doesn't work if changed Revision Changes Path 1.3 +3 -1 maven-plugins/cobertura/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- plugin.properties 15 Jun 2005 16:49:42 -0000 1.2 +++ plugin.properties 15 Jun 2005 18:01:50 -0000 1.3 @@ -3,4 +3,6 @@ maven.cobertura.junit.fork=yes maven.cobertura.instrumentation.includes=**/*.class maven.cobertura.instrumentation.excludes=NOT_DEFINED -maven.cobertura.datafile=${maven.cobertura.dir}/cobertura.ser + +# don't change this seems it doesn't work +maven.cobertura.datafile=${basedir}/cobertura.ser 1.3 +2 -1 maven-plugins/cobertura/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/properties.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- properties.xml 15 Jun 2005 16:49:43 -0000 1.2 +++ properties.xml 15 Jun 2005 18:01:50 -0000 1.3 @@ -73,10 +73,11 @@ </tr> <tr> <td>maven.cobertura.datafile</td> - <td>${maven.cobertura.dir}/cobertura.ser</td> + <td>${basedir}/cobertura.ser</td> <td>Yes</td> <td> Specify the name of the file to use for storing the metadata about your classes. + Seems cobertura doesn't work correctly if changed (to be verified) </td> </tr> </table> |
From: Carlos S. <car...@us...> - 2005-06-15 17:59:29
|
carlossg 05/06/15 10:59:18 Modified: cobertura plugin.jelly cobertura/xdocs goals.xml Log: Changed cobertura:html-report to cobertura:report goal and generate also xml report Revision Changes Path 1.4 +26 -11 maven-plugins/cobertura/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.jelly,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.jelly 15 Jun 2005 17:23:24 -0000 1.3 +++ plugin.jelly 15 Jun 2005 17:59:17 -0000 1.4 @@ -54,9 +54,9 @@ <!-- D E F A U L T R E P O R T --> <!-- ================================================================== --> <goal name="maven-cobertura-plugin:report" - description="Run the default report (html)."> + description="Run the default report (xml and html)."> - <attainGoal name="cobertura:html-report" /> + <attainGoal name="cobertura:report" /> </goal> @@ -135,16 +135,16 @@ <!-- D E F A U L T G O A L --> <!-- ================================================================== --> <goal name="cobertura" - description="Generate HTML test coverage reports with Cobertura" - prereqs="cobertura:html-report" + description="Generate test coverage reports with Cobertura" + prereqs="cobertura:report" /> <!-- ================================================================== --> <!-- R E P O R T G O A L --> <!-- ================================================================== --> - <goal name="cobertura:html-report" - description="Generate HTML test coverage reports with Cobertura"> + <goal name="cobertura:report" + description="Generate test coverage reports with Cobertura"> <j:choose> @@ -167,11 +167,10 @@ </ant:copy> </j:if> - <ant:cobertura-report srcdir="${sourceDir}" destdir="${coberturaDocs}" datafile="${maven.cobertura.datafile}"> - <ant:classpath> - <ant:path refid="cobertura.classpath"/> - </ant:classpath> - </ant:cobertura-report> + <j:set var="maven.cobertura.format" value="html" /> + <attainGoal name="cobertura:report-internal"/> + <j:set var="maven.cobertura.format" value="xml" /> + <attainGoal name="cobertura:report-internal"/> <attainGoal name="cobertura:off"/> @@ -192,4 +191,20 @@ </goal> + + <!-- ================================================================== --> + <!-- I N T E R N A L R E P O R T G O A L --> + <!-- ================================================================== --> + <goal name="cobertura:report-internal" + description="Generate test coverage reports with Cobertura in maven.cobertura.format format"> + + <ant:cobertura-report srcdir="${sourceDir}" destdir="${coberturaDocs}" + datafile="${maven.cobertura.datafile}" format="${maven.cobertura.format}"> + <ant:classpath> + <ant:path refid="cobertura.classpath"/> + </ant:classpath> + </ant:cobertura-report> + + </goal> + </project> 1.2 +7 -3 maven-plugins/cobertura/xdocs/goals.xml Index: goals.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/goals.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- goals.xml 10 Jun 2005 06:24:56 -0000 1.1 +++ goals.xml 15 Jun 2005 17:59:18 -0000 1.2 @@ -29,14 +29,18 @@ <description>Generate HTML test coverage reports with Cobertura</description> </goal> <goal> - <name>cobertura:html-report</name> - <description>Generate HTML test coverage reports with Cobertura</description> + <name>cobertura:report</name> + <description>Generate HTML and XML test coverage reports with Cobertura</description> </goal> <goal> <name>cobertura:on</name> <description>perform the coverage analysis</description> </goal> <goal> + <name>cobertura:off</name> + <description>restore values after the coverage analysis</description> + </goal> + <goal> <name>maven-cobertura-plugin:deregister</name> <description>Deregister the cobertura plugin</description> </goal> @@ -46,7 +50,7 @@ </goal> <goal> <name>maven-cobertura-plugin:report</name> - <description>Run the default report (html).</description> + <description>Run the default report (cobertura:report).</description> </goal> </goals> </body> |
From: Carlos S. <car...@us...> - 2005-06-15 17:23:35
|
carlossg 05/06/15 10:23:24 Modified: cobertura plugin.jelly Log: Added cobertura:off Revision Changes Path 1.3 +21 -8 maven-plugins/cobertura/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.jelly,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- plugin.jelly 15 Jun 2005 16:49:41 -0000 1.2 +++ plugin.jelly 15 Jun 2005 17:23:24 -0000 1.3 @@ -118,6 +118,20 @@ </goal> <!-- ================================================================== --> + <!-- I N S T R U M E N T A T I O N O F F --> + <!-- ================================================================== --> + <goal name="cobertura:off" description="Restore previous properties"> + + <maven:set plugin="maven-java-plugin" property="maven.junit.fork" value="${oldfork}"/> + <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${oldBuildDest}"/> + <maven:set plugin="maven-test-plugin" property="maven.build.dest" value="${oldBuildDest}"/> + <j:expr value="${pom.getPluginContext('maven-test-plugin').setVariable( + 'maven.test.failure.ignore', ignoreTestFailureOld)}"/> + + </goal> + + + <!-- ================================================================== --> <!-- D E F A U L T G O A L --> <!-- ================================================================== --> <goal name="cobertura" @@ -125,18 +139,21 @@ prereqs="cobertura:html-report" /> + <!-- ================================================================== --> <!-- R E P O R T G O A L --> <!-- ================================================================== --> <goal name="cobertura:html-report" - description="Generate HTML test coverage reports with Cobertura" - prereqs="cobertura:on,test:test"> + description="Generate HTML test coverage reports with Cobertura"> <j:choose> <j:when test="${unitTestSourcesPresent == 'true'}"> <j:catch var="ex"> + + <attainGoal name="cobertura:on"/> + <attainGoal name="test:test"/> <j:set var="sourceDir" value="${context.getAntProject().getReferences().get('maven.compile.src.set')}" /> <u:tokenize var="sourceDirList" delim="${path.separator}">${sourceDir}</u:tokenize> @@ -156,11 +173,7 @@ </ant:classpath> </ant:cobertura-report> - <maven:set plugin="maven-java-plugin" property="maven.junit.fork" value="${oldfork}"/> - <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${oldBuildDest}"/> - <maven:set plugin="maven-test-plugin" property="maven.build.dest" value="${oldBuildDest}"/> - <j:expr value="${pom.getPluginContext('maven-test-plugin').setVariable( - 'maven.test.failure.ignore', ignoreTestFailureOld)}"/> + <attainGoal name="cobertura:off"/> </j:catch> @@ -178,5 +191,5 @@ </j:choose> </goal> - + </project> |
From: Carlos S. <car...@us...> - 2005-06-15 16:50:00
|
carlossg 05/06/15 09:49:43 Modified: cobertura plugin.jelly plugin.properties cobertura/xdocs properties.xml Log: Added maven.cobertura.datafile property Revision Changes Path 1.2 +18 -6 maven-plugins/cobertura/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.jelly,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.jelly 10 Jun 2005 06:16:44 -0000 1.1 +++ plugin.jelly 15 Jun 2005 16:49:41 -0000 1.2 @@ -73,6 +73,10 @@ <j:set var="oldBuildDest" value="${maven.build.dest}"/> <j:set var="fork" value="${maven.cobertura.junit.fork}"/> <maven:get plugin="maven-test-plugin" property="maven.junit.fork" var="oldfork"/> + <maven:get plugin="maven-test-plugin" property="maven.test.failure.ignore" var="ignoreTestFailureOld"/> + + <!-- Make sure that the report is generated whether the tests pass or not --> + <maven:set plugin="maven-test-plugin" property="maven.test.failure.ignore" value="true"/> <!-- reset the maven.build.dest for the test plugin to find the instrumented classes --> <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${instrumented}"/> @@ -90,7 +94,7 @@ <maven:addPath id="maven.dependency.classpath" refid="cobertura.classpath"/> - <ant:cobertura-instrument todir="${maven.cobertura.instrumentation}"> + <ant:cobertura-instrument todir="${maven.cobertura.instrumentation}" datafile="${maven.cobertura.datafile}"> <ant:fileset dir="${maven.build.dest}" includes="${maven.cobertura.instrumentation.includes}" excludes="${maven.cobertura.instrumentation.excludes}"/> @@ -127,7 +131,9 @@ <goal name="cobertura:html-report" description="Generate HTML test coverage reports with Cobertura" prereqs="cobertura:on,test:test"> + <j:choose> + <j:when test="${unitTestSourcesPresent == 'true'}"> <j:catch var="ex"> @@ -144,25 +150,31 @@ </ant:copy> </j:if> - <ant:cobertura-report srcdir="${sourceDir}" destdir="${coberturaDocs}"> - <ant:classpath> - <ant:path refid="cobertura.classpath"/> - </ant:classpath> - </ant:cobertura-report> + <ant:cobertura-report srcdir="${sourceDir}" destdir="${coberturaDocs}" datafile="${maven.cobertura.datafile}"> + <ant:classpath> + <ant:path refid="cobertura.classpath"/> + </ant:classpath> + </ant:cobertura-report> <maven:set plugin="maven-java-plugin" property="maven.junit.fork" value="${oldfork}"/> <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${oldBuildDest}"/> <maven:set plugin="maven-test-plugin" property="maven.build.dest" value="${oldBuildDest}"/> + <j:expr value="${pom.getPluginContext('maven-test-plugin').setVariable( + 'maven.test.failure.ignore', ignoreTestFailureOld)}"/> </j:catch> + <j:if test="${ex != null}"> <log:error>${ex}</log:error> <ant:fail message="${ex}" /> </j:if> + </j:when> + <j:otherwise> <ant:echo>No tests to run Cobertura on.</ant:echo> </j:otherwise> + </j:choose> </goal> 1.2 +1 -0 maven-plugins/cobertura/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/plugin.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.properties 10 Jun 2005 06:16:44 -0000 1.1 +++ plugin.properties 15 Jun 2005 16:49:42 -0000 1.2 @@ -3,3 +3,4 @@ maven.cobertura.junit.fork=yes maven.cobertura.instrumentation.includes=**/*.class maven.cobertura.instrumentation.excludes=NOT_DEFINED +maven.cobertura.datafile=${maven.cobertura.dir}/cobertura.ser 1.2 +8 -0 maven-plugins/cobertura/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/cobertura/xdocs/properties.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- properties.xml 10 Jun 2005 06:24:56 -0000 1.1 +++ properties.xml 15 Jun 2005 16:49:43 -0000 1.2 @@ -71,6 +71,14 @@ Specifies the fork attribute for the JUnit test for the coverage analysis. </td> </tr> + <tr> + <td>maven.cobertura.datafile</td> + <td>${maven.cobertura.dir}/cobertura.ser</td> + <td>Yes</td> + <td> + Specify the name of the file to use for storing the metadata about your classes. + </td> + </tr> </table> </section> </body> |
From: Eric P. <de...@us...> - 2005-06-14 18:01:13
|
dep4b 05/06/14 11:01:07 Modified: xmlresume .cvsignore Log: Ignore velocity log file generated when running multiproject. Revision Changes Path 1.2 +1 -0 maven-plugins/xmlresume/.cvsignore Index: .cvsignore =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xmlresume/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- .cvsignore 17 Feb 2004 07:17:04 -0000 1.1 +++ .cvsignore 14 Jun 2005 18:01:06 -0000 1.2 @@ -1 +1,2 @@ target +velocity.log |
From: Carlos S. <car...@us...> - 2005-06-10 06:25:02
|
carlossg 05/06/09 23:24:56 Added: cobertura/xdocs changes.xml goals.xml navigation.xml properties.xml Log: Initial import Revision Changes Path 1.1 maven-plugins/cobertura/xdocs/changes.xml Index: changes.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Changes</title> </properties> <body> <release version="1.0-SNAPSHOT" date="IN CVS"> </release> </body> </document> 1.1 maven-plugins/cobertura/xdocs/goals.xml Index: goals.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Maven Cobertura plugin Goals</title> </properties> <body> <goals> <goal> <name>cobertura</name> <description>Generate HTML test coverage reports with Cobertura</description> </goal> <goal> <name>cobertura:html-report</name> <description>Generate HTML test coverage reports with Cobertura</description> </goal> <goal> <name>cobertura:on</name> <description>perform the coverage analysis</description> </goal> <goal> <name>maven-cobertura-plugin:deregister</name> <description>Deregister the cobertura plugin</description> </goal> <goal> <name>maven-cobertura-plugin:register</name> <description>Register the maven-cobertura-plugin.</description> </goal> <goal> <name>maven-cobertura-plugin:report</name> <description>Run the default report (html).</description> </goal> </goals> </body> </document> 1.1 maven-plugins/cobertura/xdocs/navigation.xml Index: navigation.xml =================================================================== <?xml version="1.0" encoding="ISO-8859-1" ?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <project> <properties> <title>Cobertura Plugin</title> </properties> <body> <links> <item name="Maven" href="http://maven.apache.org/"/> <item name="Cobertura" href="http://cobertura.sourceforge.net/"/> </links> <menu name="Home"> <item name="Cobertura plugin Project" href="/index.html"/> </menu> <menu name="Overview"> <item name="Properties" href="/properties.html"/> <item name="Goals" href="/goals.html"/> </menu> </body> </project> 1.1 maven-plugins/cobertura/xdocs/properties.xml Index: properties.xml =================================================================== <?xml version="1.0" encoding="ISO-8859-1" ?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Cobertura Plugin Properties</title> </properties> <body> <section name="Plugin's properties"> <table> <tr> <th>Property</th> <th>Default</th> <th>Optional?</th> <th>Description</th> </tr> <tr> <td>maven.cobertura.dir</td> <td>${maven.build.dir}/cobertura</td> <td>Yes</td> <td> Specifies the root directory for cobertura output files. </td> </tr> <tr> <td>maven.cobertura.instrumentation</td> <td>${maven.cobertura.dir}/classes</td> <td>Yes</td> <td> Specifies the build directory for the instrumented classes. </td> </tr> <tr> <td>maven.cobertura.instrumentation.includes</td> <td>**/*.class</td> <td>Yes</td> <td> Specifies the pattern for the included classes of instrumentation. </td> </tr> <tr> <td>maven.cobertura.instrumentation.excludes</td> <td>Not defined</td> <td>Yes</td> <td> Specifies the pattern for the excluded classes of instrumentation. It's a comma separated property. </td> </tr> <tr> <td>maven.cobertura.junit.fork</td> <td>yes</td> <td>Yes</td> <td> Specifies the fork attribute for the JUnit test for the coverage analysis. </td> </tr> </table> </section> </body> </document> |
From: Carlos S. <car...@us...> - 2005-06-10 06:16:53
|
carlossg 05/06/09 23:16:45 Added: cobertura .cvsignore plugin.jelly plugin.properties project.xml cobertura/xdocs index.xml Log: Initial import Revision Changes Path 1.1 maven-plugins/cobertura/.cvsignore Index: .cvsignore =================================================================== target maven.log .project *.log 1.1 maven-plugins/cobertura/plugin.jelly Index: plugin.jelly =================================================================== <?xml version="1.0"?> <project xmlns:j="jelly:core" xmlns:ant="jelly:ant" xmlns:log="jelly:log" xmlns:maven="jelly:maven" xmlns:define="jelly:define" xmlns:u="jelly:util" xmlns:doc="doc"> <!-- global definitions --> <ant:path id="cobertura.classpath"> <ant:pathelement path="${maven.build.dest}"/> <ant:pathelement path="${plugin.getDependencyPath('urbanophile:java-getopt')}"/> <ant:pathelement path="${plugin.getDependencyPath('javancss:javancss')}"/> <ant:pathelement path="${plugin.getDependencyPath('javancss:ccl')}"/> <ant:pathelement path="${plugin.getDependencyPath('asm')}"/> <ant:pathelement path="${plugin.getDependencyPath('oro')}"/> <ant:pathelement path="${plugin.getDependencyPath('log4j')}"/> <ant:pathelement path="${plugin.getDependencyPath('cobertura')}"/> </ant:path> <ant:taskdef classpath="${plugin.getDependencyPath('cobertura')}" resource="tasks.properties" /> <maven:get plugin="maven-xdoc-plugin" property="maven.docs.dest" var="docsDest"/> <j:set var="coberturaDocs" value="${docsDest}/cobertura"/> <goal name="maven-cobertura-plugin:register" description="Register the maven-cobertura-plugin."> <j:if test="${sourcesPresent == 'true'}"> <doc:registerReport name="Cobertura" pluginName="maven-cobertura-plugin" link="cobertura/index" target="_blank" description="Cobertura test coverage report." /> </j:if> </goal> <goal name="maven-cobertura-plugin:deregister" description="Deregister the maven-cobertura-plugin"> <j:if test="${sourcesPresent == 'true'}"> <doc:deregisterReport name="Cobertura" /> </j:if> </goal> <!-- ================================================================== --> <!-- D E F A U L T R E P O R T --> <!-- ================================================================== --> <goal name="maven-cobertura-plugin:report" description="Run the default report (html)."> <attainGoal name="cobertura:html-report" /> </goal> <!-- ================================================================== --> <!-- I N S T R U M E N T A T I O N --> <!-- ================================================================== --> <goal name="cobertura:on" description="perform the coverage analysis" prereqs="java:compile"> <j:catch var="ex"> <j:set var="instrumented" value="${maven.cobertura.instrumentation}"/> <j:set var="oldBuildDest" value="${maven.build.dest}"/> <j:set var="fork" value="${maven.cobertura.junit.fork}"/> <maven:get plugin="maven-test-plugin" property="maven.junit.fork" var="oldfork"/> <!-- reset the maven.build.dest for the test plugin to find the instrumented classes --> <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${instrumented}"/> <maven:set plugin="maven-test-plugin" property="maven.build.dest" value="${instrumented}"/> <!-- set the maven.junit.fork property --> <maven:set plugin="maven-test-plugin" property="maven.junit.fork" value="${fork}"/> <ant:mkdir dir="${coberturaDocs}" /> <ant:mkdir dir="${maven.cobertura.instrumentation}" /> <log:info>instrumenting the class-files...</log:info> <maven:addPath id="maven.dependency.classpath" refid="cobertura.classpath"/> <ant:cobertura-instrument todir="${maven.cobertura.instrumentation}"> <ant:fileset dir="${maven.build.dest}" includes="${maven.cobertura.instrumentation.includes}" excludes="${maven.cobertura.instrumentation.excludes}"/> <ant:classpath> <ant:path refid="cobertura.classpath"/> </ant:classpath> </ant:cobertura-instrument> <ant:copy todir="${maven.cobertura.instrumentation}"> <ant:fileset dir="${maven.build.dest}"> <ant:exclude name="**/*.class" /> <ant:exclude name="${maven.cobertura.instrumentation.excludes}" /> </ant:fileset> </ant:copy> </j:catch> <j:if test="${ex != null}"> <log:error>${ex}</log:error> <ant:fail message="${ex}" /> </j:if> </goal> <!-- ================================================================== --> <!-- D E F A U L T G O A L --> <!-- ================================================================== --> <goal name="cobertura" description="Generate HTML test coverage reports with Cobertura" prereqs="cobertura:html-report" /> <!-- ================================================================== --> <!-- R E P O R T G O A L --> <!-- ================================================================== --> <goal name="cobertura:html-report" description="Generate HTML test coverage reports with Cobertura" prereqs="cobertura:on,test:test"> <j:choose> <j:when test="${unitTestSourcesPresent == 'true'}"> <j:catch var="ex"> <j:set var="sourceDir" value="${context.getAntProject().getReferences().get('maven.compile.src.set')}" /> <u:tokenize var="sourceDirList" delim="${path.separator}">${sourceDir}</u:tokenize> <j:if test="${size(sourceDirList) != 1}"> <echo>Copying ${size(sourceDirList)} source directories into one for cobertura</echo> <j:set var="sourceDir" value="${maven.cobertura.dir}/sources" /> <ant:copy todir="${sourceDir}"> <j:forEach var="dir" items="${sourceDirList}"> <ant:fileset dir="${dir}" /> </j:forEach> </ant:copy> </j:if> <ant:cobertura-report srcdir="${sourceDir}" destdir="${coberturaDocs}"> <ant:classpath> <ant:path refid="cobertura.classpath"/> </ant:classpath> </ant:cobertura-report> <maven:set plugin="maven-java-plugin" property="maven.junit.fork" value="${oldfork}"/> <maven:set plugin="maven-java-plugin" property="maven.build.dest" value="${oldBuildDest}"/> <maven:set plugin="maven-test-plugin" property="maven.build.dest" value="${oldBuildDest}"/> </j:catch> <j:if test="${ex != null}"> <log:error>${ex}</log:error> <ant:fail message="${ex}" /> </j:if> </j:when> <j:otherwise> <ant:echo>No tests to run Cobertura on.</ant:echo> </j:otherwise> </j:choose> </goal> </project> 1.1 maven-plugins/cobertura/plugin.properties Index: plugin.properties =================================================================== maven.cobertura.dir=${maven.build.dir}/cobertura maven.cobertura.instrumentation=${maven.cobertura.dir}/classes maven.cobertura.junit.fork=yes maven.cobertura.instrumentation.includes=**/*.class maven.cobertura.instrumentation.excludes=NOT_DEFINED 1.1 maven-plugins/cobertura/project.xml Index: project.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- /* * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <project> <extend>${basedir}/../plugin-project.xml</extend> <pomVersion>3</pomVersion> <artifactId>maven-cobertura-plugin</artifactId> <name>Cobertura Plug-in</name> <currentVersion>1.0-SNAPSHOT</currentVersion> <inceptionYear>2005</inceptionYear> <description>Maven Plugin for Cobertura</description> <shortDescription>Maven Plugin for Cobertura</shortDescription> <url>http://maven-plugins.sourceforge.net/maven-cobertura-plugin</url> <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/cobertura</connection> <developerConnection>scm:cvs:ssh:use...@cv...:/cvsroot/maven-plugins:maven-plugins/cobertura</developerConnection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/cobertura/</url> </repository> <versions> </versions> <developers> <developer> <name>Carlos Sanchez</name> <id>carlossg</id> <email>ca...@ap...</email> <roles> <role>Software Developer</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>cobertura</groupId> <artifactId>cobertura</artifactId> <version>1.4</version> <url>http://cobertura.sourceforge.net</url> </dependency> <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId> <version>2.0.8</version> <url>http://asm.objectweb.org</url> </dependency> <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>2.0</version> <url>http://asm.objectweb.org</url> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.8</version> <url>http://logging.apache.org/log4j</url> </dependency> <dependency> <groupId>urbanophile</groupId> <artifactId>java-getopt</artifactId> <version>1.0.9</version> <url>http://www.urbanophile.com/arenn/hacking/download.html</url> </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> </dependency> </dependencies> </project> 1.1 maven-plugins/cobertura/xdocs/index.xml Index: index.xml =================================================================== <?xml version="1.0" encoding="ISO-8859-1" ?> <!-- /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <document> <properties> <title>Cobertura Plugin</title> </properties> <body> <section name="Cobertura Plugin"> <p> The Cobertura tool is a free and easy to use source code coverage analyser. It helps you to discover where your source-code lacks in test coverage. </p> <p> For more information regarding Cobertura check out the <a href="http://cobertura.sourceforge.net/" target="_blank"> project homepage</a>. </p> </section> </body> </document> |
From: Carlos S. <car...@us...> - 2005-06-08 22:51:39
|
carlossg 05/06/08 15:51:32 maven-plugins/cobertura/xdocs - New directory |
From: Carlos S. <car...@us...> - 2005-06-08 22:47:15
|
carlossg 05/06/08 15:47:09 maven-plugins/cobertura - New directory |
From: Eric P. <de...@us...> - 2005-06-03 17:54:13
|
dep4b 05/06/03 10:54:06 Modified: webtest project.xml webtest/xdocs changes.xml Log: Prep for next version Revision Changes Path 1.23 +1 -1 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- project.xml 3 Jun 2005 17:40:11 -0000 1.22 +++ project.xml 3 Jun 2005 17:54:04 -0000 1.23 @@ -8,7 +8,7 @@ <name>Canoo WebTest Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.1</currentVersion> + <currentVersion>1.2-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2002</inceptionYear> 1.17 +1 -0 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- changes.xml 3 Jun 2005 17:40:11 -0000 1.16 +++ changes.xml 3 Jun 2005 17:54:05 -0000 1.17 @@ -6,6 +6,7 @@ <author email="sie...@it...">Siegfried Goeschl</author> </properties> <body> + <release version="1.2" date="IN CVS"></release> <release version="1.1" date="2005-06-03"></release> <release version="1.0" date="2005-03-18"> <action dev="epugh" type="upgrade">Upgrade to build 752 of Webtest. Mostly consists of updating jar files.</action> |
From: Eric P. <de...@us...> - 2005-06-03 17:40:23
|
dep4b 05/06/03 10:40:12 Modified: webtest project.xml webtest/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.1 Revision Changes Path 1.22 +20 -35 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- project.xml 18 Mar 2005 20:25:57 -0000 1.21 +++ project.xml 3 Jun 2005 17:40:11 -0000 1.22 @@ -3,35 +3,40 @@ <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> + <id>maven-webtest-plugin</id> <name>Canoo WebTest Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.1-SNAPSHOT</currentVersion> + + <currentVersion>1.1</currentVersion> <!-- organization is in parent --> + <inceptionYear>2002</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> + <description>Maven Plugin for Canoo WebTest</description> <shortDescription>Maven Plugin for Canoo WebTest</shortDescription> <!-- issue tracking url, siteAddress are in parent --> + <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/webtest/</siteDirectory> <distributionDirectory>/home/groups/m/ma/maven-plugins/htdocs/webtest/distributions/</distributionDirectory> - <repository> <connection>scm:cvs:pserver:wd...@cv...:/cvsroot/maven-plugins:maven-plugins/webtest</connection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/webtest/</url> </repository> - <versions> <version> <id>1.0</id> <name>1.0</name> <tag>MAVEN_WEBTEST_PLUGIN_1_0</tag> - </version> + </version> + <version> + <id>1.1</id> + <name>1.1</name> + <tag>MAVEN_WEBTEST_PLUGIN_1_1</tag> + </version> </versions> - - <branches> - </branches> - + <branches></branches> <!-- mailingLists are in parent --> <developers> @@ -60,7 +65,7 @@ <roles> <role>Software Developer</role> </roles> - </developer> + </developer> <developer> <name>Vincent Massol</name> <id>vmassol</id> @@ -70,7 +75,7 @@ <role>Software Developer</role> </roles> </developer> - <developer> + <developer> <name>Willie Vu</name> <id>willievu</id> <email>wil...@ya...</email> @@ -79,108 +84,90 @@ </roles> </developer> </developers> - <dependencies> <dependency> <groupId>commons-jelly</groupId> <artifactId>commons-jelly-tags-interaction</artifactId> <version>1.0</version> - </dependency> - + </dependency> <dependency> <groupId>ant</groupId> <artifactId>ant</artifactId> <version>1.5.2</version> <url>http://jakarata.apache.org/ant</url> </dependency> - <dependency> <groupId>ant</groupId> <artifactId>ant-optional</artifactId> <version>1.5.2</version> <url>http://jakarata.apache.org/ant</url> </dependency> - <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>1.4.1</version> </dependency> - <dependency> - <groupId>commons-cli</groupId> - <artifactId>commons-cli</artifactId> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> <version>1.0</version> <url>http://jakarta.apache.org/commons/cli/index.html</url> </dependency> - <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.4</version> <url>http://www.dom4j.org</url> </dependency> - <dependency> <groupId>groovy</groupId> <artifactId>groovy</artifactId> <version>1.0-beta-6</version> <url>http://groovy.codehaus.org/</url> </dependency> - <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <version>1.6</version> - <url></url> + <url/> </dependency> - - <dependency> <groupId>jtidy</groupId> <artifactId>jtidy</artifactId> <version>4aug2000r7-dev</version> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <url>http://www.junit.org</url> </dependency> - <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.8</version> </dependency> - <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId> <version>2.0.6</version> </dependency> - <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.5.1</version> </dependency> - <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.4.0</version> </dependency> - <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.0.b2</version> </dependency> - </dependencies> - <build> <resources> <resource> @@ -205,13 +192,11 @@ </resource> </resources> </build> - <reports> - <report>maven-changes-plugin</report> + <report>maven-changes-plugin</report> <report>maven-changelog-plugin</report> <report>maven-developer-activity-plugin</report> <report>maven-file-activity-plugin</report> <report>maven-license-plugin</report> </reports> </project> - 1.16 +38 -141 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- changes.xml 18 Mar 2005 21:41:13 -0000 1.15 +++ changes.xml 3 Jun 2005 17:40:11 -0000 1.16 @@ -1,174 +1,71 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> + <document> <properties> <title>Changes</title> <author email="sie...@it...">Siegfried Goeschl</author> </properties> - <body> - <release version="1.1" date="in CVS"> - </release> + <release version="1.1" date="2005-06-03"></release> <release version="1.0" date="2005-03-18"> - <action dev="epugh" type="upgrade"> - Upgrade to build 752 of Webtest. Mostly consists of updating jar files. - </action> - <action dev="wdsgoe" type="fix" due-to="David Gerber"> - Fixed anchors in the XSLT - </action> - <action dev="wdsgoe" type="fix" due-to="Krystian Nowak"> - Hopefully fixed passing emtpy parameters to ANT on UNIX. - </action> - <action dev="epugh" type="upgrade" due-to="Matt Raible"> - Upgrade to build 733 of Webtest. Mostly consists of updating jar files. - </action> - <action dev="epugh" type="add"> - Add the ability to supply a list of extra systemproperties (maven.webtest.sysproperties) that - are passed into the Ant task. Any empty system properties will cause a prompt first to supply - the data. - </action> - <action dev="epugh" type="fix"> - Fix link to generated report when running maven site. - </action> + <action dev="epugh" type="upgrade">Upgrade to build 752 of Webtest. Mostly consists of updating jar files.</action> + <action dev="wdsgoe" type="fix" due-to="David Gerber">Fixed anchors in the XSLT</action> + <action dev="wdsgoe" type="fix" due-to="Krystian Nowak">Hopefully fixed passing emtpy parameters to ANT on UNIX.</action> + <action dev="epugh" type="upgrade" due-to="Matt Raible">Upgrade to build 733 of Webtest. Mostly consists of updating jar files.</action> + <action dev="epugh" type="add">Add the ability to supply a list of extra systemproperties (maven.webtest.sysproperties) that are passed into the Ant task. Any empty system properties will cause a prompt first to supply the data.</action> + <action dev="epugh" type="fix">Fix link to generated report when running maven site.</action> </release> <release version="0.9.1" date="2004-10-28"> - <action dev="wdsgoe" type="update"> - Updated to Canoo WebTest 543 - </action> - <action dev="wdsgoe" type="update"> - Shipping the custom Canoo WebTest libraries as plugin-resources since the can't be uploaded to IBIBLIOP - </action> - <action dev="wdsgoe" type="update"> - Removed the special handling for ANT targets in the JELLY script - hope this still works on UNIX?! - </action> + <action dev="wdsgoe" type="update">Updated to Canoo WebTest 543</action> + <action dev="wdsgoe" type="update">Shipping the custom Canoo WebTest libraries as plugin-resources since the can't be uploaded to IBIBLIOP</action> + <action dev="wdsgoe" type="update">Removed the special handling for ANT targets in the JELLY script - hope this still works on UNIX?!</action> </release> - <release version="0.9.0" date="2004-08-10"> - <action dev="wdsgoe" type="update"> - Dropping JSTL in favour for XSLT and the the available XSL templates from Canoo - </action> - <action dev="wdsgoe" type="add"> - Added a webtest:loop target - </action> + <action dev="wdsgoe" type="update">Dropping JSTL in favour for XSLT and the the available XSL templates from Canoo</action> + <action dev="wdsgoe" type="add">Added a webtest:loop target</action> </release> - <release version="0.8" date="2003-08-01"> - <action dev="wdsgoe" type="fix"> - Fixed empty target problem with the ANT invocation - under UNIX/LINUX - </action> + <action dev="wdsgoe" type="fix">Fixed empty target problem with the ANT invocation under UNIX/LINUX</action> </release> - <release version="0.7" date="2003-07-18"> - <action dev="wdsgoe" type="update"> - Got the plugin working for Maven B10. - </action> - <action dev="wdsgoe" type="update"> - Dropped the finishing time of sumamry report - since it is redundant and just use precious - space - </action> - <action dev="wdsgoe" type="update"> - Extended the individual test report to show - the parameters of the test steps. The generated - HTML report now contains all the information - of the original XSLT report apart from the - html parser warnings. - </action> + <action dev="wdsgoe" type="update">Got the plugin working for Maven B10.</action> + <action dev="wdsgoe" type="update">Dropped the finishing time of sumamry report since it is redundant and just use precious space</action> + <action dev="wdsgoe" type="update">Extended the individual test report to show the parameters of the test steps. The generated HTML report now contains all the information of the original XSLT report apart from the html parser warnings.</action> </release> - <release version="0.6" date="2003-01-3"> - <action dev="wdsgoe" type="fix"> - Using current versions of Canoo Webtest, NekoHtml und XERCES - </action> - <action dev="wdsgoe" type="fix"> - Removed feature in plugin.jelly wich allows to add a JAR - into ANT's classpath using JAR id for the local repository. - Not defining anything resulted to adding all Jars of the - local repository - </action> - <action dev="wdsgoe" type="add"> - Added more detailed information how to use Canoo Webtest with - SSL - </action> + <action dev="wdsgoe" type="fix">Using current versions of Canoo Webtest, NekoHtml und XERCES</action> + <action dev="wdsgoe" type="fix">Removed feature in plugin.jelly wich allows to add a JAR into ANT's classpath using JAR id for the local repository. Not defining anything resulted to adding all Jars of the local repository</action> + <action dev="wdsgoe" type="add">Added more detailed information how to use Canoo Webtest with SSL</action> </release> - <release version="0.6" date="2003-01-3"> - <action dev="wdsgoe" type="fix"> - Using current versions of Canoo Webtest, NekoHtml und XERCES - </action> - <action dev="wdsgoe" type="fix"> - Removed feature in plugin.jelly wich allows to add a JAR - into ANT's classpath using JAR id for the local repository. - Not defining anything resulted to adding all Jars of the - local repository - </action> - <action dev="wdsgoe" type="add"> - Added more detailed information how to use Canoo Webtest with - SSL - </action> + <action dev="wdsgoe" type="fix">Using current versions of Canoo Webtest, NekoHtml und XERCES</action> + <action dev="wdsgoe" type="fix">Removed feature in plugin.jelly wich allows to add a JAR into ANT's classpath using JAR id for the local repository. Not defining anything resulted to adding all Jars of the local repository</action> + <action dev="wdsgoe" type="add">Added more detailed information how to use Canoo Webtest with SSL</action> </release> - <release version="0.5" date="2002-12-30"> - <action dev="wdsgoe" type="add"> - Added a "maven.webtest.target" property fo define a - target to be executed - </action> - <action dev="wdsgoe" type="add"> - Added a few Canoo Webtest samples - </action> - <action dev="wdsgoe" type="add"> - The default target "webtest" does everything now - </action> + <action dev="wdsgoe" type="add">Added a "maven.webtest.target" property fo define a target to be executed</action> + <action dev="wdsgoe" type="add">Added a few Canoo Webtest samples</action> + <action dev="wdsgoe" type="add">The default target "webtest" does everything now</action> </release> - <release version="0.4" date="2002-11-12"> - <action dev="wdsgoe" type="fix"> - Not inlcuding the project dependencies when calling ANT. - This should avoid clashes with the various Xerces on this - planet + <action dev="wdsgoe" type="fix">Not inlcuding the project dependencies when calling ANT. This should avoid clashes with the various Xerces on this planet</action> + <action dev="wdsgoe" type="add">Since the project dependencies are not longer included a new property + <b>maven.webtest.jar.include</b>is used tpo selectively import JARs from the project. The property contains a comma seperated list of JAR ids to add JARs defined in the project.xml </action> - <action dev="wdsgoe" type="add"> - Since the project dependencies are not longer included a - new property <b>maven.webtest.jar.include</b> is used - tpo selectively import JARs from the project. The property - contains a comma seperated list of JAR ids to add JARs - defined in the project.xml - </action> - <action dev="wdsgoe" type="add"> - Using HttpUnit 1.5 instead of 1.4.1 - </action> - <action dev="wdsgoe" type="add"> - Using NeckoHTML instead of JTidy due to HttpUnit 1.5 - </action> + <action dev="wdsgoe" type="add">Using HttpUnit 1.5 instead of 1.4.1</action> + <action dev="wdsgoe" type="add">Using NeckoHTML instead of JTidy due to HttpUnit 1.5</action> </release> - <release version="0.3" date="2002-10-24"> - <action dev="wdsgoe" type="fix"> - Removed XALAN from the ANT classpath since it was not needed - </action> - <action dev="wdsgoe" type="add"> - Using images for the result of a webtest - </action> - <action dev="wdsgoe" type="add"> - Added number of executed tests to summary report - </action> + <action dev="wdsgoe" type="fix">Removed XALAN from the ANT classpath since it was not needed</action> + <action dev="wdsgoe" type="add">Using images for the result of a webtest</action> + <action dev="wdsgoe" type="add">Added number of executed tests to summary report</action> </release> - <release version="0.2" date="2002-10-24"> - <action dev="wdsgoe" type="add"> - Retrieving the required JARs from project.xml - </action> - <action dev="wdsgoe" type="add"> - Provided properties to add additional JARs for executing ANT - </action> + <action dev="wdsgoe" type="add">Retrieving the required JARs from project.xml</action> + <action dev="wdsgoe" type="add">Provided properties to add additional JARs for executing ANT</action> </release> - <release version="0.1" date="2002-10-18"> - <action dev="wdsgoe" type="add"> - Initial plugin created - </action> + <action dev="wdsgoe" type="add">Initial plugin created</action> </release> - </body> </document> - |
From: Eric P. <de...@us...> - 2005-06-03 14:01:36
|
dep4b 05/06/03 07:01:30 Modified: xdocs installing.xml Log: Try and clarify downloading and installing a plugin. Revision Changes Path 1.7 +12 -4 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- installing.xml 17 Feb 2004 13:57:48 -0000 1.6 +++ installing.xml 3 Jun 2005 14:01:30 -0000 1.7 @@ -7,18 +7,25 @@ <body> <section name="Installation of Plugins"> <p> - Plugins available from this site need installing into the local Maven repository set-up before use. There are 2 ways to do this. + Plugins available from this site need installing into the local Maven repository set-up before use. + There are 2 ways to do this. </p> <subsection name="Manual Install"> <p> - After you have downloaded a plugin for Maven (from Maven-Plugins, or from a different source), you should look in your Maven installation and you will find <B>$MAVEN_HOME/plugins/</B>. You need to copy your plugin into that directory. If you then type <I>maven -g</I> you will get a list of all plugins and goals that Maven can find (note that you may need to remove your ".maven" directory first, because Maven caches information). + After you have downloaded a plugin for Maven (from <a href="http://maven-plugins.sourceforge.net/repository/maven-plugins/">Maven-Plugins</a>, + or from a different source), you should look in your Maven installation and you will find <B>$MAVEN_HOME/plugins/</B>. + You need to copy your plugin into that directory. If you then type <I>maven -g</I> you will get a list + of all plugins and goals that Maven can find (note that you may need to remove your ".maven/cache" directory + first, because Maven caches plugin information). </p> </subsection> <subsection name="Automatic Install"> <p> - You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need to <b>add</b> <code>http://maven-plugins.sf.net/maven</code> to your <B>maven.repo.remote</B> parameter (can be set in build.properties for example). + You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need + to <b>add</b> <code>http://maven-plugins.sf.net/maven</code> to your <B>maven.repo.remote</B> property + (can be set in project.properties for example). </p> <p> Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sf.net/maven</code> @@ -26,7 +33,8 @@ <p> You can then download and install plugins as follows <source>maven -DartifactId=ARTIFACTID -DgroupId=GROUPID -Dversion=VERSION plugin:download</source> - replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This will then download the plugin and install it in your local set-up. + replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This + will then download the plugin and install it in your local set-up. For example to download the findbug plugin, use: </p> <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download</source> |