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: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:13:11
|
bhilstad 05/11/02 14:13:01 was5config/src/java/org/apache/maven/was5/jdbc - New directory |
From: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:13:11
|
bhilstad 05/11/02 14:13:01 was5config/src/java/org/apache/maven/was5/listenerport - New directory |
From: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:13:10
|
bhilstad 05/11/02 14:13:01 was5config/src/java/org/apache/maven/was5/mq - New directory |
From: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:13:10
|
bhilstad 05/11/02 14:13:01 was5config/javadoc - New directory |
From: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:13:08
|
bhilstad 05/11/02 14:13:01 was5config/src/java/org/apache/maven - New directory |
From: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:13:08
|
bhilstad 05/11/02 14:13:01 was5config/src/java/org/apache/maven/was5 - New directory |
From: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:13:08
|
bhilstad 05/11/02 14:13:01 was5config/src/java/org/apache/maven/was5/jaas - New directory |
From: Bjorn.Hilstad <bhi...@us...> - 2005-11-02 22:11:40
|
bhilstad 05/11/02 14:11:34 was5config - New directory |
From: dion g. <dio...@us...> - 2005-11-02 10:55:20
|
diongillard 05/11/02 02:55:12 Modified: was5/xdocs properties.xml Log: Add installed.application docs Changed headings to be simpler. Revision Changes Path 1.6 +9 -2 maven-plugins/was5/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/properties.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- properties.xml 2 Nov 2005 10:27:26 -0000 1.5 +++ properties.xml 2 Nov 2005 10:55:12 -0000 1.6 @@ -5,7 +5,7 @@ <title>WebSphere 5 (5.0/5.1) Plugin Properties</title> </properties> <body> - <section name="WebSphere 5 (5.0/5.1) Plugin - Basic Settings"> + <section name="Basic Settings"> <table> <tr> <th>Property</th> @@ -35,6 +35,13 @@ </td> </tr> <tr> + <td>maven.was5.installed.application</td> + <td>Yes</td> + <td> + The name of the application for install, uninstall, start and stop. + </td> + </tr> + <tr> <td>maven.was5.password</td> <td>Yes</td> <td> @@ -89,7 +96,7 @@ </tr> </table> </section> - <section name="WebSphere 5 (5.0/5.1) Plugin - was5:ejbDeploy Settings"> + <section name="ejbDeploy Settings"> <table> <tr> <th>Property</th> |
From: dion g. <dio...@us...> - 2005-11-02 10:40:19
|
diongillard 05/11/02 02:40:12 Modified: was5 plugin.properties Log: Maven maven.was5.install.options use the installed.application as the default name Revision Changes Path 1.6 +2 -1 maven-plugins/was5/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.properties,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- plugin.properties 2 Nov 2005 10:23:32 -0000 1.5 +++ plugin.properties 2 Nov 2005 10:40:12 -0000 1.6 @@ -5,7 +5,7 @@ maven.was5.ejbDeploy.file.out=${maven.build.dir}/${maven.was5.version}/${maven.final.name}.jar -# Default application name used to uninstall/start/stop or otherwise +# Default application name used to install/uninstall/start/stop # refer to an installed application maven.was5.installed.application=${maven.ear.displayname} @@ -60,6 +60,7 @@ maven.was5.installApp.port=${maven.was5.port} maven.was5.installApp.username=${maven.was5.username} maven.was5.installApp.password=${maven.was5.password} +maven.was5.installApp.options=-appname ${maven.was5.installed.application} # uninstallApp |
From: dion g. <dio...@us...> - 2005-11-02 10:27:39
|
diongillard 05/11/02 02:27:26 Modified: was5/xdocs properties.xml Log: add ejb.out.file property docs Revision Changes Path 1.5 +9 -0 maven-plugins/was5/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/properties.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- properties.xml 2 Nov 2005 10:13:20 -0000 1.4 +++ properties.xml 2 Nov 2005 10:27:26 -0000 1.5 @@ -114,6 +114,15 @@ </td> </tr> <tr> + <td>maven.was5.ejbDeploy.file.out</td> + <td>Yes</td> + <td> + The output ejb jar file generated as a result of the ejbDeploy process (generating code used + by the container at runtime). This defaults to + <code>${maven.build.dir}/${maven.was5.version}/${maven.final.name}.jar</code> + </td> + </tr> + <tr> <td>maven.was5.ejbDeploy.workingdir</td> <td>Yes</td> <td> |
From: dion g. <dio...@us...> - 2005-11-02 10:23:38
|
diongillard 05/11/02 02:23:32 Modified: was5 plugin.properties Log: Remove was5 hard code Revision Changes Path 1.5 +1 -1 maven-plugins/was5/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/plugin.properties,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.properties 11 Aug 2004 05:37:10 -0000 1.4 +++ plugin.properties 2 Nov 2005 10:23:32 -0000 1.5 @@ -2,7 +2,7 @@ maven.was5.version=was5 maven.was5.ejbDeploy.workingdir=${maven.build.dir}/${maven.was5.version}/ejbdeploy maven.was5.ejbDeploy.file=${maven.build.dir}/${maven.final.name}.jar -maven.was5.ejbDeploy.file.out=${maven.build.dir}/was5/${maven.final.name}.jar +maven.was5.ejbDeploy.file.out=${maven.build.dir}/${maven.was5.version}/${maven.final.name}.jar # Default application name used to uninstall/start/stop or otherwise |
From: dion g. <dio...@us...> - 2005-11-02 10:15:23
|
diongillard 05/11/02 02:15:17 Modified: was5 project.xml Log: Bump version to 2.1-SNAPSHOT so that docs are added to new release. Revision Changes Path 1.16 +1 -1 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- project.xml 1 Nov 2005 19:54:15 -0000 1.15 +++ project.xml 2 Nov 2005 10:15:17 -0000 1.16 @@ -6,7 +6,7 @@ <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - <currentVersion>2.0</currentVersion> + <currentVersion>2.1-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> |
From: dion g. <dio...@us...> - 2005-11-02 10:13:27
|
diongillard 05/11/02 02:13:20 Modified: was5/xdocs properties.xml Log: Add some basic docs Revision Changes Path 1.4 +88 -4 maven-plugins/was5/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/properties.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- properties.xml 11 Aug 2004 05:44:15 -0000 1.3 +++ properties.xml 2 Nov 2005 10:13:20 -0000 1.4 @@ -5,7 +5,7 @@ <title>WebSphere 5 (5.0/5.1) Plugin Properties</title> </properties> <body> - <section name="WebSphere 5 (5.0/5.1) Plugin Settings"> + <section name="WebSphere 5 (5.0/5.1) Plugin - Basic Settings"> <table> <tr> <th>Property</th> @@ -13,6 +13,20 @@ <th>Description</th> </tr> <tr> + <td>maven.was5.conntype</td> + <td>Yes</td> + <td> + TODO. + </td> + </tr> + <tr> + <td>maven.was5.failonerror</td> + <td>Yes</td> + <td> + TODO. + </td> + </tr> + <tr> <td>maven.was5.home</td> <td>Yes*</td> <td> @@ -21,11 +35,17 @@ </td> </tr> <tr> - <td>maven.was5.ejbDeploy</td> + <td>maven.was5.password</td> <td>Yes</td> <td> - <p>Set this property to have the ejbDeploy goal attained as part of the ejb:ejb - goal. ie. to run ejbdeploy on your EJB artifact.</p> + TODO. + </td> + </tr> + <tr> + <td>maven.was5.quiet</td> + <td>Yes</td> + <td> + TODO. </td> </tr> <tr> @@ -37,6 +57,70 @@ ${maven.was5.<goal>.server}.</p> </td> </tr> + <tr> + <td>maven.was5.statusPort</td> + <td>Yes</td> + <td> + TODO. + </td> + </tr> + <tr> + <td>maven.was5.trace</td> + <td>Yes</td> + <td> + TODO. + </td> + </tr> + <tr> + <td>maven.was5.username</td> + <td>Yes</td> + <td> + TODO. + </td> + </tr> + <tr> + <td>maven.was5.version</td> + <td>Yes</td> + <td> + The version of WebSphere being used. Default to <code>was5</code>. + Note that this property is not used to differentiate releases, it is + simply used as part of the directory structure for various goals. + </td> + </tr> + </table> + </section> + <section name="WebSphere 5 (5.0/5.1) Plugin - was5:ejbDeploy Settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.ejbDeploy</td> + <td>Yes</td> + <td> + <p>Set this property to have the ejbDeploy goal attained as part of the ejb:ejb + goal. ie. to run ejbdeploy on your EJB artifact.</p> + </td> + </tr> + <tr> + <td>maven.was5.ejbDeploy.file</td> + <td>Yes</td> + <td> + The input ejb jar file to be used during the ejbDeploy process (generating code used + by the container at runtime). This defaults to + <code>${maven.build.dir}/${maven.final.name}.jar</code> + </td> + </tr> + <tr> + <td>maven.was5.ejbDeploy.workingdir</td> + <td>Yes</td> + <td> + The directory that temporary files are written to during the ejbDeploy process. + This defaults to <code>${maven.build.dir}/${maven.was5.version}/ejbdeploy</code> + </td> + </tr> </table> </section> <section name="Script settings"> |
From: dion g. <dio...@us...> - 2005-11-01 19:54:23
|
diongillard 05/11/01 11:54:15 Modified: was5 project.xml was5/xdocs changes.xml Log: [maven-scm-plugin] prepare release 2.0 Revision Changes Path 1.15 +6 -8 maven-plugins/was5/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/project.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- project.xml 11 Oct 2005 06:29:11 -0000 1.14 +++ project.xml 1 Nov 2005 19:54:15 -0000 1.15 @@ -3,22 +3,17 @@ <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> - <id>maven-was5-plugin</id> <name>WebSphere 5 (5.0/5.1) Plugin</name> <!-- groupId is in parent --> - - <currentVersion>2.0-SNAPSHOT</currentVersion> + <currentVersion>2.0</currentVersion> <!-- organization is in parent --> - <inceptionYear>2004</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> - <description>A plugin to manage a WebSphere AppServer 5/5.1 artifacts and installation</description> <shortDescription>Manage WAS 5/5.1</shortDescription> <url>http://maven-plugins.sourceforge.net/${pom.artifactId}</url> <!-- issue tracking url, siteAddress are in parent --> - <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-was5-plugin/</siteDirectory> <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/was5</connection> @@ -41,9 +36,13 @@ <name>1.2</name> <tag>MAVEN_PLUGINS_WAS5_1_2</tag> </version> + <version> + <id>2.0</id> + <name>2.0</name> + <tag>WAS5PLUGIN-2_0</tag> + </version> </versions> <!-- mailingLists are in parent --> - <developers> <developer> <id>rlewisshell</id> @@ -60,5 +59,4 @@ <!-- licenses section not done yet --> <!-- build is in the parent --> <!-- reports is in the parent --> - </project> 1.16 +1 -1 maven-plugins/was5/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/changes.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- changes.xml 24 Jun 2005 03:29:37 -0000 1.15 +++ changes.xml 1 Nov 2005 19:54:15 -0000 1.16 @@ -6,7 +6,7 @@ <author email="dio...@us...">dIon Gillard</author> </properties> <body> - <release version="2.0-SNAPSHOT" date="in CVS"> + <release version="2.0" date="2005-11-02"> <action dev="diongillard" type="update">Deprecate was5:run-script, replacing it with was5:runScript</action> <action dev="diongillard" type="fix">Use ws_ant to invoke tasks, instead of using a taskdef inside Maven, as this is not supported by IBM</action> <action dev="diongillard" type="fix">username not being passed correctly</action> |
From: Eric P. <de...@us...> - 2005-11-01 16:39:46
|
dep4b 05/11/01 08:39:37 Modified: findbugs project.xml findbugs/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.0 Revision Changes Path 1.30 +6 -3 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- project.xml 1 Nov 2005 16:22:54 -0000 1.29 +++ project.xml 1 Nov 2005 16:39:37 -0000 1.30 @@ -6,7 +6,7 @@ <artifactId>maven-findbugs-plugin</artifactId> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.0-SNAPSHOT</currentVersion> + <currentVersion>1.0</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> @@ -15,13 +15,11 @@ <url>http://maven-plugins.sourceforge.net/${pom.artifactId}</url> <!-- issue tracking url, siteAddress are in parent --> <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-findbugs-plugin/</siteDirectory> - <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/findbugs</connection> <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/findbugs</developerConnection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/findbugs/</url> </repository> - <versions> <version> <id>0.8.4</id> @@ -38,6 +36,11 @@ <name>0.9.2</name> <tag>MAVEN_FINDBUGS_0_9_2</tag> </version> + <version> + <id>1.0</id> + <name>1.0</name> + <tag>MAVEN_FINDBUGS_1_0</tag> + </version> </versions> <!-- mailingLists is in parent --> <developers> 1.24 +1 -1 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- changes.xml 1 Nov 2005 16:33:24 -0000 1.23 +++ changes.xml 1 Nov 2005 16:39:37 -0000 1.24 @@ -6,7 +6,7 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> - <release version="1.0-SNAPSHOT" date="in CVS"> + <release version="1.0" date="2005-11-01"> <action dev="dep4b" type="update">Switch from naming Maven Findbugs releases after Findbugs versions to using a sequence just for Maven Findbugs Plugin.</action> <action dev="dep4b" type="fix" issue="1078970">Sample findbugs report didn't have xref source to link to.</action> <action dev="dep4b" type="fix" due-to="John Whaley" issue="1194218">FindBugs does not xref to source of inner classes correctly.</action> |
From: Eric P. <de...@us...> - 2005-11-01 16:33:30
|
dep4b 05/11/01 08:33:25 Modified: findbugs/xdocs changes.xml Log: update list of changes for 1.0. Revision Changes Path 1.23 +4 -1 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- changes.xml 11 Oct 2005 05:06:37 -0000 1.22 +++ changes.xml 1 Nov 2005 16:33:24 -0000 1.23 @@ -6,7 +6,10 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> - <release version="0.9.3-SNAPSHOT" date="in CVS"> + <release version="1.0-SNAPSHOT" date="in CVS"> + <action dev="dep4b" type="update">Switch from naming Maven Findbugs releases after Findbugs versions to using a sequence just for Maven Findbugs Plugin.</action> + <action dev="dep4b" type="fix" issue="1078970">Sample findbugs report didn't have xref source to link to.</action> + <action dev="dep4b" type="fix" due-to="John Whaley" issue="1194218">FindBugs does not xref to source of inner classes correctly.</action> <action dev="carlossg" type="fix">Use libraries as dependencies instead of bundle them.</action> <action dev="carlossg" type="update">Upgrade to findbugs 0.9.3.</action> </release> |
From: Eric P. <de...@us...> - 2005-11-01 16:33:12
|
dep4b 05/11/01 08:33:06 Modified: findbugs maven.xml Log: Show sample xref source code when generating the sample findbugs report. Revision Changes Path 1.2 +3 -0 maven-plugins/findbugs/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/maven.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- maven.xml 31 Jul 2004 11:42:48 -0000 1.1 +++ maven.xml 1 Nov 2005 16:33:06 -0000 1.2 @@ -9,6 +9,9 @@ <attainGoal name="multiproject:goal"/> <mkdir dir="target/generated-xdocs/"/> <copy file="src/plugin-test/target/generated-xdocs/findbugs-report.xml" tofile="target/generated-xdocs/sample-findbugs-report.xml"/> + <copy toDir="target/docs/xref"> + <fileset dir="src/plugin-test/target/docs/xref"/> + </copy> </preGoal> </project> |
From: Eric P. <de...@us...> - 2005-11-01 16:32:45
|
dep4b 05/11/01 08:32:38 Modified: findbugs/src/plugin-resources findbugs.jsl Added: findbugs/src/plugin-test/src/java/net/sf/mavenplugins/findbugs ClassWithInnerClassWithErrorsForFindbugs.java Log: Properly create links to inner classes xref. Revision Changes Path 1.1 maven-plugins/findbugs/src/plugin-test/src/java/net/sf/mavenplugins/findbugs/ClassWithInnerClassWithErrorsForFindbugs.java Index: ClassWithInnerClassWithErrorsForFindbugs.java =================================================================== package net.sf.mavenplugins.findbugs; import java.util.Vector; /** * This is a simple example of a class with an innerclass that findbugs will analyze. It * should return one bug looking like: * "M UuF: Unused field: net.sf.mavenplugins.findbugs.MathUtil.mode:. * * and another bug like * Line * NS: Questionable use of non-short-circuit logic in net.sf.mavenplugins.findbugs.ClassWithErrorsForFindbugs.setValue(double) * * @author Eric Pugh */ public class ClassWithInnerClassWithErrorsForFindbugs{ public class InnerClass { public double unusedVariable; /**This method adds a new number to the data set and re-compute the mean, mean square, minimum and maximum values, and order statistics*/ public void setValue(double x){ double a, b; int size =0; boolean notInserted = true; //Add the value to the data set for (int i = 0; i < size - 1; i++){ a = 0; b = 0; if ((a <= x) & (x >= b)){ } } } } } 1.2 +10 -2 maven-plugins/findbugs/src/plugin-resources/findbugs.jsl Index: findbugs.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/src/plugin-resources/findbugs.jsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- findbugs.jsl 29 Jul 2004 18:09:51 -0000 1.1 +++ findbugs.jsl 1 Nov 2005 16:32:38 -0000 1.2 @@ -90,8 +90,16 @@ </td> <td> <j:set var="line" value="${error.attribute('line').getValue()}"/> - <util:replace var="jxrName" value="${name}" oldChar="." newChar="/"/> - <a href="xref/${jxrName}.html#${line}">${line}</a> + <util:replace var="jxrName1" value="${name}" oldChar="." newChar="/"/> + <util:tokenize var="jxrName2" delim="\$">${jxrName1}</util:tokenize> + + <j:set var="loopOnceVar" value="TRUE"/> + <j:forEach var="jxrName3" items="${jxrName2}"> + <j:if test="${loopOnceVar=='TRUE'}"> + <a href="xref/${jxrName3}.html#${line}">${line}</a> + <j:set var="loopOnceVar" value="FALSE"/> + </j:if> + </j:forEach> </td> </tr> </j:forEach> |
From: Eric P. <de...@us...> - 2005-11-01 16:23:02
|
dep4b 05/11/01 08:22:54 Modified: findbugs project.xml Log: Don't tie the Maven plugin release numbers to the FindBugs version numbers. Revision Changes Path 1.29 +1 -1 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- project.xml 11 Oct 2005 06:29:04 -0000 1.28 +++ project.xml 1 Nov 2005 16:22:54 -0000 1.29 @@ -6,7 +6,7 @@ <artifactId>maven-findbugs-plugin</artifactId> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.9.3-SNAPSHOT</currentVersion> + <currentVersion>1.0-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> |
From: Eric P. <de...@us...> - 2005-11-01 15:34:06
|
dep4b 05/11/01 07:33:56 Modified: findbugs/src/plugin-test/src/java/net/sf/mavenplugins/findbugs ClassWithErrorsForFindbugs.java Log: Remove Eclipse default text. Revision Changes Path 1.2 +0 -2 maven-plugins/findbugs/src/plugin-test/src/java/net/sf/mavenplugins/findbugs/ClassWithErrorsForFindbugs.java Index: ClassWithErrorsForFindbugs.java =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/src/plugin-test/src/java/net/sf/mavenplugins/findbugs/ClassWithErrorsForFindbugs.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ClassWithErrorsForFindbugs.java 31 Jul 2004 11:42:01 -0000 1.1 +++ ClassWithErrorsForFindbugs.java 1 Nov 2005 15:33:56 -0000 1.2 @@ -8,8 +8,6 @@ * @author Eric Pugh * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments */ public class ClassWithErrorsForFindbugs{ //Variables |
From: dion g. <dio...@us...> - 2005-11-01 14:12:24
|
diongillard 05/11/01 06:12:06 Added: was5/.settings org.eclipse.core.resources.prefs Log: Add eclipse 3.1? settings Revision Changes Path 1.1 maven-plugins/was5/.settings/org.eclipse.core.resources.prefs Index: org.eclipse.core.resources.prefs =================================================================== #Wed Aug 11 15:33:40 EST 2004 encoding//xdocs/changes.xml=UTF-8 eclipse.preferences.version=1 encoding//xdocs/navigation.xml=UTF-8 encoding//xdocs/faq.fml=ISO-8859-1 encoding//xdocs/properties.xml=UTF-8 encoding//xdocs/index.xml=UTF-8 encoding//xdocs/goals.xml=UTF-8 |
From: dion g. <dio...@us...> - 2005-11-01 14:12:24
|
diongillard 05/11/01 06:11:56 maven-plugins/was5/.settings - New directory |
From: Carlos S. <car...@us...> - 2005-10-19 22:37:44
|
carlossg 05/10/19 15:37:37 Modified: maven-dashboard-history/maven-plugins plugin.properties project.xml maven-dashboard-history/history-dashboard project.xml project.properties maven-dashboard-history/ant-history-dashboard project.xml project.properties Removed: maven-dashboard-history/maven-plugins project.properties Log: Improved syntax and use maven-plugins configuration Revision Changes Path 1.3 +0 -2 maven-plugins/maven-dashboard-history/maven-plugins/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/plugin.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- plugin.properties 18 Oct 2005 15:17:13 -0000 1.2 +++ plugin.properties 19 Oct 2005 22:37:36 -0000 1.3 @@ -1,6 +1,4 @@ maven.dashboard.indicators=cserrors,cswarnings,clovertpc,cloverloc,cloverncloc,simiantdl,junittests,junitpassrate,fbfiles,fbviolations - -dashboardhistorical.version=1.1 maven.dashboard.history.report.xdoc=dashboard-history-report maven.dashboard.report.xml=dashboard-data.xml 1.3 +10 -10 maven-plugins/maven-dashboard-history/maven-plugins/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/project.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- project.xml 18 Oct 2005 15:17:13 -0000 1.2 +++ project.xml 19 Oct 2005 22:37:36 -0000 1.3 @@ -2,10 +2,10 @@ <project> <pomVersion>3</pomVersion> - <id>maven-historical-plugin</id> - <groupId>maven_historic_dashboard</groupId> - <name>Maven dashboard historic plugin</name> - <currentVersion>${dashboardhistorical.version}</currentVersion> + <extend>${basedir}/../../plugin-project.xml</extend> + <artifactId>maven-dashboard-history-plugin</artifactId> + <currentVersion>1.1-SNAPSHOT</currentVersion> + <name>Maven dashboard history plugin</name> <organization> <name>OCTO Technology</name> </organization> @@ -32,15 +32,15 @@ --> <dependency> - <groupId>maven_historic_dashboard</groupId> - <artifactId>historic_dashboard</artifactId> - <version>${dashboardhistorical.version}</version> + <groupId>maven-plugins</groupId> + <artifactId>history-dashboard</artifactId> + <version>1.1-SNAPSHOT</version> </dependency> <dependency> - <groupId>maven_historic_dashboard</groupId> - <artifactId>ant_historic_dashboard</artifactId> - <version>${dashboardhistorical.version}</version> + <groupId>maven-plugins</groupId> + <artifactId>ant-history-dashboard</artifactId> + <version>1.1-SNAPSHOT</version> </dependency> <dependency> 1.4 +4 -24 maven-plugins/maven-dashboard-history/history-dashboard/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/history-dashboard/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- project.xml 14 Oct 2005 02:52:12 -0000 1.3 +++ project.xml 19 Oct 2005 22:37:36 -0000 1.4 @@ -6,12 +6,9 @@ ************************************************************************ --> <project> - <!-- identifiant du projet --> - <pomVersion>1</pomVersion> - <id>maven_history_dashboard:history_dashboard</id> - <!-- (facultatif) identifiant de groupe --> - <artifactId>history_dashboard</artifactId> - <groupId>maven_history_dashboard</groupId> + <pomVersion>3</pomVersion> + <extend>${basedir}/../../plugin-project.xml</extend> + <artifactId>history-dashboard</artifactId> <!-- libellé du projet --> <organization /> <name>Maven History Dashboard components</name> @@ -20,7 +17,7 @@ <description>Maven History Dashboard components.</description> <!-- mailing lists --> <!-- version en cours de développement --> - <currentVersion>${dashboardhistorical.version}</currentVersion> + <currentVersion>1.1-SNAPSHOT</currentVersion> <developers> <developer> <name>Mathieu Gandin</name> @@ -142,22 +139,5 @@ </resource> </resources> </build> - <reports> - <report>maven-changes-plugin</report> - <report>maven-changelog-plugin</report> - <report>maven-file-activity-plugin</report> - <report>maven-developer-activity-plugin</report> - <report>maven-checkstyle-plugin</report> - <report>maven-javadoc-plugin</report> - <report>maven-jdepend-plugin</report> - <report>maven-junit-report-plugin</report> - <report>maven-jxr-plugin</report> - <report>maven-license-plugin</report> - <report>maven-tasklist-plugin</report> - <report>maven-clover-plugin</report> - <report>maven-simian-plugin</report> - <report>maven-findbugs-plugin</report> - <report>maven-linkcheck-plugin</report> - </reports> </project> 1.2 +0 -2 maven-plugins/maven-dashboard-history/history-dashboard/project.properties Index: project.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/history-dashboard/project.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- project.properties 12 Jul 2005 14:30:52 -0000 1.1 +++ project.properties 19 Oct 2005 22:37:36 -0000 1.2 @@ -1,8 +1,6 @@ maven.ear.appxml.generate=true maven.ear.displayname=true -#num de version du projet qui est utiliséar tous les composants du projet -dashboardhistorical.version=1.1 maven.multiproject.basedir = .. maven.multiproject.excludes = MainProject/project.xml 1.3 +8 -11 maven-plugins/maven-dashboard-history/ant-history-dashboard/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/ant-history-dashboard/project.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- project.xml 29 Jul 2005 16:15:38 -0000 1.2 +++ project.xml 19 Oct 2005 22:37:37 -0000 1.3 @@ -6,12 +6,9 @@ ************************************************************************ --> <project> - <!-- identifiant du projet --> - <pomVersion>1</pomVersion> - <id>maven_history_dashboard:ant_history_dashboard</id> - <!-- (facultatif) identifiant de groupe --> - <artifactId>ant_history_dashboard</artifactId> - <groupId>maven_history_dashboard</groupId> + <pomVersion>3</pomVersion> + <extend>${basedir}/../../plugin-project.xml</extend> + <artifactId>ant-history-dashboard</artifactId> <!-- libellé du projet --> <organization /> <name>Ant tasks for Maven History Dashboard plugin</name> @@ -20,7 +17,7 @@ <description>Ant tasks for Maven History Dashboard plugin</description> <!-- mailing lists --> <!-- version en cours de développement --> - <currentVersion>${dashboardhistorical.version}</currentVersion> + <currentVersion>1.1-SNAPSHOT</currentVersion> <developers> <developer> <name>Mathieu Gandin</name> @@ -53,9 +50,9 @@ <!-- dépendances --> <dependencies> <dependency> - <groupId>maven_history_dashboard</groupId> - <artifactId>history_dashboard</artifactId> - <version>${dashboardhistorical.version}</version> + <groupId>maven-plugins</groupId> + <artifactId>history-dashboard</artifactId> + <version>1.1-SNAPSHOT</version> </dependency> <dependency> @@ -90,7 +87,7 @@ <version>1.6.3</version> </dependency> <dependency> - <groupId>mockrunner</groupId> + <groupId>com.mockrunner</groupId> <artifactId>mockrunner</artifactId> <version>0.3.1</version> </dependency> 1.2 +1 -3 maven-plugins/maven-dashboard-history/ant-history-dashboard/project.properties Index: project.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/ant-history-dashboard/project.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- project.properties 12 Jul 2005 14:34:34 -0000 1.1 +++ project.properties 19 Oct 2005 22:37:37 -0000 1.2 @@ -1,8 +1,6 @@ maven.ear.appxml.generate=true maven.ear.displayname=true -maven.multiproject.type=jar -#num de version du projet qui est utiliséar tous les composants du projet -dashboardhistorical.version=1.1 + maven.multiproject.basedir = .. maven.multiproject.excludes = MainProject/project.xml |
From: Carlos S. <car...@us...> - 2005-10-19 22:25:53
|
carlossg 05/10/19 15:25:48 Added: maven-dashboard-history/maven-plugins .cvsignore maven-dashboard-history/history-dashboard .cvsignore maven-dashboard-history/ant-history-dashboard .cvsignore Log: Added cvs ignores Revision Changes Path 1.1 maven-plugins/maven-dashboard-history/maven-plugins/.cvsignore Index: .cvsignore =================================================================== target 1.1 maven-plugins/maven-dashboard-history/history-dashboard/.cvsignore Index: .cvsignore =================================================================== target 1.1 maven-plugins/maven-dashboard-history/ant-history-dashboard/.cvsignore Index: .cvsignore =================================================================== target |