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: Jeff J. <jef...@us...> - 2006-08-09 03:20:38
|
jeffjensen 06/08/08 20:20:36 Modified: sourceforge/xdocs index.xml Log: 1535326 Fix wrong download links to ibiblio repo, thanks to Dennis Lundberg. Revision Changes Path 1.9 +1 -1 maven-plugins/sourceforge/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sourceforge/xdocs/index.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- index.xml 7 Jan 2006 22:50:52 -0000 1.8 +++ index.xml 9 Aug 2006 03:20:35 -0000 1.9 @@ -31,7 +31,7 @@ 1. Install this plugin:<br/> <source> maven plugin:download - -Dmaven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sf.net/repository + -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sf.net/repository -DartifactId=maven-sourceforge-plugin -DgroupId=maven-plugins -Dversion=1.3 </source> |
From: Jeff J. <jef...@us...> - 2006-08-09 02:13:31
|
jeffjensen 06/08/08 19:13:29 Modified: findbugs plugin.jelly Log: Change plugin jelly from CVS binary to CVS ASCII. Revision Changes Path 1.17 +194 -194 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- plugin.jelly 9 Aug 2006 02:12:32 -0000 1.16 +++ plugin.jelly 9 Aug 2006 02:13:29 -0000 1.17 @@ -1,194 +1,194 @@ -<?xml version="1.0"?> - -<!-- - ============================================================================= - FindBugs Plugin. Generate FindBugs reports using the FindBugs framework. - ============================================================================= ---> -<project xmlns:j="jelly:core" xmlns:doc="doc" xmlns:ant="jelly:ant" xmlns:maven="jelly:maven" > - - <!-- - ======================================================================== - Register a FindBugs report. - ======================================================================== - --> - <goal name="maven-findbugs-plugin:register"> - <j:if test="${sourcesPresent}"> - <doc:registerReport - name="FindBugs Report" - pluginName="maven-findbugs-plugin" - description="Verification of coding rules." - link="findbugs-report"/> - </j:if> - </goal> - - <!-- - ======================================================================== - Deregister a FindBugs report. - ======================================================================== - --> - <goal name="maven-findbugs-plugin:deregister"> - <j:if test="${sourcesPresent}"> - <doc:deregisterReport name="FindBugs Report"/> - </j:if> - </goal> - - <!-- - ======================================================================== - Main FindBugs plugin goal. - ======================================================================== - --> - <goal name="findbugs" description="Static Code Analyzer"> - - <!-- Only run FindBugs if it is enabled --> - <j:set var="enable" value="${maven.findbugs.enable}"/> - - <j:if test="${enable == 'true'}"> - <attainGoal name="maven-findbugs-plugin:report"/> - </j:if> - - </goal> - - <!-- - ======================================================================== - Generate the FindBugs report. - ======================================================================== - --> - <goal name="maven-findbugs-plugin:report" prereqs="java:compile" - description="Generate source code report with FindBugs"> - - <!-- Create the dirs if we start from a previously cleaned project --> - <mkdir dir="${maven.build.dir}"/> - <mkdir dir="${maven.docs.dest}"/> - - <!-- Define a FindBugs task with the rulesets and all jars in the - classpath --> - <path id="findbugs.classpath"> - <pathelement location="${plugin.getDependencyPath('findbugs:bcel')}"/> - <pathelement location="${plugin.getDependencyPath('findbugs:coreplugin')}"/> - <pathelement location="${plugin.getDependencyPath('findbugs:findbugs')}"/> - <pathelement location="${plugin.getDependencyPath('findbugs:findbugs-ant')}"/> - <pathelement location="${plugin.getDependencyPath('dom4j:dom4j')}" /> - </path> - - <path id="findbugs.pluginlist"> - <pathelement location="${plugin.getDependencyPath('findbugs:coreplugin')}"/> - <j:if test="${context.getVariable('maven.findbugs.plugins') != null}"> - <pathelement path="${maven.findbugs.plugins}"/> - </j:if> - </path> - - <ant:taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"> - <classpath refid="findbugs.classpath"/> - </ant:taskdef> - - <!-- Run the FindBugs task - need a way to define the rulesets dynamically --> - <echo>Running the FindBugs task...</echo> - - - <findbugs classpathref="findbugs.classpath" - pluginlistref="findbugs.pluginlist" - reportLevel="${maven.findbugs.detail}" - conserveSpace="${maven.findbugs.conserveSpace}" - debug="${maven.findbugs.debug}" - workHard="${maven.findbugs.workHard}" - output="xdocs" - outputFile="${maven.build.dir}/findbugs-raw-report.xml" - failOnError="${maven.findbugs.failOnError}" - quietErrors="${maven.findbugs.quietErrors}"> - - <j:if test="${context.getVariable('maven.findbugs.jvmargs') != null}"> - <ant:setProperty name="jvmargs" value="${maven.findbugs.jvmargs}" /> - </j:if> - - <j:if test="${context.getVariable('maven.findbugs.excludeFilter') != null}"> - <ant:setProperty name="excludeFilter" value="${maven.findbugs.excludeFilter}" /> - </j:if> - - <j:if test="${context.getVariable('maven.findbugs.includeFilter') != null}"> - <ant:setProperty name="includeFilter" value="${maven.findbugs.includeFilter}" /> - </j:if> - - <j:if test="${context.getVariable('maven.findbugs.timeout') != null}"> - <ant:setProperty name="timeout" value="${maven.findbugs.timeout}" /> - </j:if> - - <j:if test="${context.getVariable('maven.findbugs.visitors') != null}"> - <ant:setProperty name="visitors" value="${maven.findbugs.visitors}" /> - </j:if> - - <j:if test="${context.getVariable('maven.findbugs.omitVisitors') != null}"> - <ant:setProperty name="omitVisitors" value="${maven.findbugs.omitVisitors}" /> - </j:if> - - <j:forEach var="artifact" items="${pom.artifacts}"> - <j:set var="dep" value="${artifact.dependency}"/> - <j:if test="${dep.type =='jar'}"> - <auxClasspath path="${artifact.path}"/> - </j:if> - </j:forEach> - <j:forEach var="lib" items="${pom.artifacts}"> - <j:if test="${lib.dependency.type =='jar'}"> - <auxClasspath path="${lib.path}"/> - </j:if> - </j:forEach> - <sourcePath path="${basedir}/src/java" /> - <j:if test="${sourcesPresent}"> - <j:set var="srcDir" value="${pom.build.sourceDirectory}"/> - <j:if test="${ srcDir.startsWith( basedir ) }"> - - <j:set var="srcDir" value="${srcDir.substring(basedir.length())}"/> - <!-- - cut off also slash or backslash from basedir. - Is there a way to make it in one step in Jelly? - --> - <j:set var="srcDir" value="${srcDir.substring(1)}"/> - </j:if> - <sourcePath path="${srcDir}"/> - </j:if> - <!--class location="${maven.build.dir}/${maven.final.name}.jar" /--> - <class location="${maven.build.dest}" /> - </findbugs> - - <!-- Run JSL to transform the report into XDOC --> - - <echo>Converting the FindBugs report to xdoc ...</echo> - - <doc:jsl - input="${maven.build.dir}/findbugs-raw-report.xml" - output="findbugs-report.xml" - stylesheet="${plugin.resources}/findbugs.jsl" - outputMode="xml" - prettyPrint="true" - /> - - </goal> - - <!-- - ======================================================================== - Register the FindBugs report to the "site" plugin. - ======================================================================== - --> - <goal name="maven-findbugs-plugin:register"> - <j:if test="${sourcesPresent == 'true'}"> - <doc:registerReport - name="FindBugs" - pluginName="maven-findbugs-plugin" - link="findbugs" - description="Report on bug patterns found in compiled code."/> - </j:if> - </goal> - - <!-- - ======================================================================== - Deregister the FindBugs report from the "site" plugin. - ======================================================================== - --> - <goal name="maven-findbugs-plugin:deregister"> - <j:if test="${sourcesPresent == 'true'}"> - <doc:deregisterReport name="FindBugs"/> - </j:if> - </goal> - - -</project> +<?xml version="1.0"?> + +<!-- + ============================================================================= + FindBugs Plugin. Generate FindBugs reports using the FindBugs framework. + ============================================================================= +--> +<project xmlns:j="jelly:core" xmlns:doc="doc" xmlns:ant="jelly:ant" xmlns:maven="jelly:maven" > + + <!-- + ======================================================================== + Register a FindBugs report. + ======================================================================== + --> + <goal name="maven-findbugs-plugin:register"> + <j:if test="${sourcesPresent}"> + <doc:registerReport + name="FindBugs Report" + pluginName="maven-findbugs-plugin" + description="Verification of coding rules." + link="findbugs-report"/> + </j:if> + </goal> + + <!-- + ======================================================================== + Deregister a FindBugs report. + ======================================================================== + --> + <goal name="maven-findbugs-plugin:deregister"> + <j:if test="${sourcesPresent}"> + <doc:deregisterReport name="FindBugs Report"/> + </j:if> + </goal> + + <!-- + ======================================================================== + Main FindBugs plugin goal. + ======================================================================== + --> + <goal name="findbugs" description="Static Code Analyzer"> + + <!-- Only run FindBugs if it is enabled --> + <j:set var="enable" value="${maven.findbugs.enable}"/> + + <j:if test="${enable == 'true'}"> + <attainGoal name="maven-findbugs-plugin:report"/> + </j:if> + + </goal> + + <!-- + ======================================================================== + Generate the FindBugs report. + ======================================================================== + --> + <goal name="maven-findbugs-plugin:report" prereqs="java:compile" + description="Generate source code report with FindBugs"> + + <!-- Create the dirs if we start from a previously cleaned project --> + <mkdir dir="${maven.build.dir}"/> + <mkdir dir="${maven.docs.dest}"/> + + <!-- Define a FindBugs task with the rulesets and all jars in the + classpath --> + <path id="findbugs.classpath"> + <pathelement location="${plugin.getDependencyPath('findbugs:bcel')}"/> + <pathelement location="${plugin.getDependencyPath('findbugs:coreplugin')}"/> + <pathelement location="${plugin.getDependencyPath('findbugs:findbugs')}"/> + <pathelement location="${plugin.getDependencyPath('findbugs:findbugs-ant')}"/> + <pathelement location="${plugin.getDependencyPath('dom4j:dom4j')}" /> + </path> + + <path id="findbugs.pluginlist"> + <pathelement location="${plugin.getDependencyPath('findbugs:coreplugin')}"/> + <j:if test="${context.getVariable('maven.findbugs.plugins') != null}"> + <pathelement path="${maven.findbugs.plugins}"/> + </j:if> + </path> + + <ant:taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"> + <classpath refid="findbugs.classpath"/> + </ant:taskdef> + + <!-- Run the FindBugs task - need a way to define the rulesets dynamically --> + <echo>Running the FindBugs task...</echo> + + + <findbugs classpathref="findbugs.classpath" + pluginlistref="findbugs.pluginlist" + reportLevel="${maven.findbugs.detail}" + conserveSpace="${maven.findbugs.conserveSpace}" + debug="${maven.findbugs.debug}" + workHard="${maven.findbugs.workHard}" + output="xdocs" + outputFile="${maven.build.dir}/findbugs-raw-report.xml" + failOnError="${maven.findbugs.failOnError}" + quietErrors="${maven.findbugs.quietErrors}"> + + <j:if test="${context.getVariable('maven.findbugs.jvmargs') != null}"> + <ant:setProperty name="jvmargs" value="${maven.findbugs.jvmargs}" /> + </j:if> + + <j:if test="${context.getVariable('maven.findbugs.excludeFilter') != null}"> + <ant:setProperty name="excludeFilter" value="${maven.findbugs.excludeFilter}" /> + </j:if> + + <j:if test="${context.getVariable('maven.findbugs.includeFilter') != null}"> + <ant:setProperty name="includeFilter" value="${maven.findbugs.includeFilter}" /> + </j:if> + + <j:if test="${context.getVariable('maven.findbugs.timeout') != null}"> + <ant:setProperty name="timeout" value="${maven.findbugs.timeout}" /> + </j:if> + + <j:if test="${context.getVariable('maven.findbugs.visitors') != null}"> + <ant:setProperty name="visitors" value="${maven.findbugs.visitors}" /> + </j:if> + + <j:if test="${context.getVariable('maven.findbugs.omitVisitors') != null}"> + <ant:setProperty name="omitVisitors" value="${maven.findbugs.omitVisitors}" /> + </j:if> + + <j:forEach var="artifact" items="${pom.artifacts}"> + <j:set var="dep" value="${artifact.dependency}"/> + <j:if test="${dep.type =='jar'}"> + <auxClasspath path="${artifact.path}"/> + </j:if> + </j:forEach> + <j:forEach var="lib" items="${pom.artifacts}"> + <j:if test="${lib.dependency.type =='jar'}"> + <auxClasspath path="${lib.path}"/> + </j:if> + </j:forEach> + <sourcePath path="${basedir}/src/java" /> + <j:if test="${sourcesPresent}"> + <j:set var="srcDir" value="${pom.build.sourceDirectory}"/> + <j:if test="${ srcDir.startsWith( basedir ) }"> + + <j:set var="srcDir" value="${srcDir.substring(basedir.length())}"/> + <!-- + cut off also slash or backslash from basedir. + Is there a way to make it in one step in Jelly? + --> + <j:set var="srcDir" value="${srcDir.substring(1)}"/> + </j:if> + <sourcePath path="${srcDir}"/> + </j:if> + <!--class location="${maven.build.dir}/${maven.final.name}.jar" /--> + <class location="${maven.build.dest}" /> + </findbugs> + + <!-- Run JSL to transform the report into XDOC --> + + <echo>Converting the FindBugs report to xdoc ...</echo> + + <doc:jsl + input="${maven.build.dir}/findbugs-raw-report.xml" + output="findbugs-report.xml" + stylesheet="${plugin.resources}/findbugs.jsl" + outputMode="xml" + prettyPrint="true" + /> + + </goal> + + <!-- + ======================================================================== + Register the FindBugs report to the "site" plugin. + ======================================================================== + --> + <goal name="maven-findbugs-plugin:register"> + <j:if test="${sourcesPresent == 'true'}"> + <doc:registerReport + name="FindBugs" + pluginName="maven-findbugs-plugin" + link="findbugs" + description="Report on bug patterns found in compiled code."/> + </j:if> + </goal> + + <!-- + ======================================================================== + Deregister the FindBugs report from the "site" plugin. + ======================================================================== + --> + <goal name="maven-findbugs-plugin:deregister"> + <j:if test="${sourcesPresent == 'true'}"> + <doc:deregisterReport name="FindBugs"/> + </j:if> + </goal> + + +</project> |
From: Jeff J. <jef...@us...> - 2006-08-09 02:12:35
|
jeffjensen 06/08/08 19:12:33 Modified: findbugs plugin.jelly project.xml findbugs/xdocs changes.xml Log: Prep for release 1.3.1. Fix 1536970 "Should use prereqs for java:compile", thanks to Shinobu Kawai. Revision Changes Path 1.16 +1 -3 maven-plugins/findbugs/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- plugin.jelly 4 Jul 2006 23:25:25 -0000 1.15 +++ plugin.jelly 9 Aug 2006 02:12:32 -0000 1.16 @@ -54,11 +54,9 @@ Generate the FindBugs report. ======================================================================== --> - <goal name="maven-findbugs-plugin:report" + <goal name="maven-findbugs-plugin:report" prereqs="java:compile" description="Generate source code report with FindBugs"> - <attainGoal name="java:compile"/> - <!-- Create the dirs if we start from a previously cleaned project --> <mkdir dir="${maven.build.dir}"/> <mkdir dir="${maven.docs.dest}"/> 1.42 +3 -3 maven-plugins/findbugs/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- project.xml 9 Jul 2006 23:31:40 -0000 1.41 +++ project.xml 9 Aug 2006 02:12:33 -0000 1.42 @@ -4,14 +4,14 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> - <extend>${basedir}/../plugin-project.xml</extend> + <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> <artifactId>maven-findbugs-plugin</artifactId> <name>FindBugs Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.3</currentVersion> + <currentVersion>1.3.1-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> @@ -27,8 +27,8 @@ <connection>scm:cvs:pserver:ano...@ma...:/cvsroot/maven-plugins:maven-plugins/findbugs</connection> <developerConnection>scm:cvs:ext:${maven.username}@maven-plugins.cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/findbugs</developerConnection> <url>http://maven-plugins.cvs.sourceforge.net/maven-plugins/maven-plugins/findbugs</url> - </repository> + <versions> <version> <id>0.8.4</id> 1.34 +5 -0 maven-plugins/findbugs/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/changes.xml,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- changes.xml 9 Jul 2006 23:31:40 -0000 1.33 +++ changes.xml 9 Aug 2006 02:12:33 -0000 1.34 @@ -6,6 +6,11 @@ <author email="ep...@op...">Eric Pugh</author> </properties> <body> + <release version="1.3.1" date="in CVS"> + <action dev="jeffjensen" type="update" issue="1536970" due-to="Shinobu Kawai"> + Should use prereqs for java:compile. + </action> + </release> <release version="1.3" date="2006-07-09"> <action dev="jeffjensen" type="update">Update to findbugs 1.0.0.</action> <action dev="jeffjensen" type="add">Added maven.findbugs.failOnError property.</action> |
From: Arnaud H. <ahe...@us...> - 2006-08-06 21:20:56
|
aheritier 06/08/06 14:20:53 Modified: . project.properties Log: Fix settings to deploy snapshots. The passphrase for the key wasn't defined. Revision Changes Path 1.19 +8 -1 maven-plugins/project.properties Index: project.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/project.properties,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- project.properties 19 Oct 2005 22:25:22 -0000 1.18 +++ project.properties 6 Aug 2006 21:20:53 -0000 1.19 @@ -24,17 +24,24 @@ maven.xdoc.distributionUrl=http://maven-plugins.sourceforge.net/repository/maven-plugins/plugins # use maven.repo.list=maven.plugins.sf.releases to deploy to the release repository +# Repository to deploy to maven.repo.list=maven.plugins.sf.snapshots + maven.repo.maven.plugins.sf.releases=scp://${pom.distributionSite} maven.repo.maven.plugins.sf.releases.directory=${pom.distributionDirectory} -# set these yourself +maven.repo.maven.plugins.sf.releases.group=maven-plugins +# These must be set elsewhere #maven.repo.maven.plugins.sf.releases.username= #maven.repo.maven.plugins.sf.releases.privatekey= +#maven.repo.maven.plugins.sf.releases.passphrase= +# Repository to deploy snapshots maven.repo.maven.plugins.sf.snapshots=${maven.repo.maven.plugins.sf.releases} maven.repo.maven.plugins.sf.snapshots.directory=${maven.repo.maven.plugins.sf.releases.directory}/../snapshot-repository maven.repo.maven.plugins.sf.snapshots.username=${maven.repo.maven.plugins.sf.releases.username} maven.repo.maven.plugins.sf.snapshots.privatekey=${maven.repo.maven.plugins.sf.releases.privatekey} +maven.repo.maven.plugins.sf.snapshots.passphrase=${maven.repo.maven.plugins.sf.releases.passphrase} +maven.repo.maven.plugins.sf.snapshots.group=${maven.repo.maven.plugins.sf.releases.group} #facililitate downloading dependencies maven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository,http://maven-plugins.sourceforge.net/snapshot-repository |
From: Jeff J. <jef...@us...> - 2006-08-06 02:44:25
|
jeffjensen 06/08/05 19:44:25 Modified: tasks/xdocs changes.xml Log: Update with latest changes/commits. Revision Changes Path 1.5 +7 -1 maven-plugins/tasks/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/changes.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- changes.xml 5 Aug 2006 04:05:59 -0000 1.4 +++ changes.xml 6 Aug 2006 02:44:25 -0000 1.5 @@ -23,12 +23,18 @@ to customize the name of the report file (location currently cannot change or it does not find it). </action> - <action dev="jeffjensen" type="fix"> + <action dev="jeffjensen" type="fix" issue="1534206"> Make work with Maven 1.1 beta 3 (corrected JSL). </action> <action dev="jeffjensen" type="add"> task element now supports HTML (e.g. can use lists in task). </action> + <action dev="jeffjensen" type="update" issue="1533916"> + Reorder columns on report to have most significant columns first. + </action> + <action dev="jeffjensen" type="add" issue="1533931"> + Add priority column. + </action> </release> <release version="1.2.0" date="25 May 2004"> <action dev="andy_jefferson" type="add">Added subcategories, and version column. Added default for status and creator columns when not specified.</action> |
From: Jeff J. <jef...@us...> - 2006-08-06 02:41:45
|
jeffjensen 06/08/05 19:41:44 Modified: tasks/src/plugin-resources tasks.jsl Log: Add priority column. Revision Changes Path 1.9 +6 -0 maven-plugins/tasks/src/plugin-resources/tasks.jsl Index: tasks.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/src/plugin-resources/tasks.jsl,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- tasks.jsl 6 Aug 2006 02:35:13 -0000 1.8 +++ tasks.jsl 6 Aug 2006 02:41:44 -0000 1.9 @@ -40,6 +40,7 @@ <!-- Tasks for the category --> <table> <tr> + <th style='width:30px'>Priority</th> <th>Task</th> <th style='width:50px'>Status</th> <th style='width:30px'>Effort</th> @@ -50,6 +51,7 @@ <th style='width:30px'>Version</th> </tr> <x:forEach var="task" select="task"> + <j:set var="priority"><x:expr select="@priority"/></j:set> <j:set var="creator"><x:expr select="@creator"/></j:set> <j:if test="${empty(creator)}"> <j:set var="creator">Unknown</j:set> @@ -64,6 +66,7 @@ </j:if> <j:set var="version"><x:expr select="@version"/></j:set> <tr> + <td>${priority}</td> <td><jsl:applyTemplates select="$task"/></td> <td>${status}</td> <td>${effort}</td> @@ -83,6 +86,7 @@ <!-- Tasks for the subcategory --> <table> <tr> + <th style='width:30px'>Priority</th> <th>Task</th> <th style='width:50px'>Status</th> <th style='width:30px'>Effort</th> @@ -93,6 +97,7 @@ <th style='width:30px'>Version</th> </tr> <x:forEach var="task" select="task"> + <j:set var="priority"><x:expr select="@priority"/></j:set> <j:set var="creator"><x:expr select="@creator"/></j:set> <j:if test="${empty(creator)}"> <j:set var="creator">Unknown</j:set> @@ -107,6 +112,7 @@ </j:if> <j:set var="version"><x:expr select="@version"/></j:set> <tr> + <td>${priority}</td> <td><jsl:applyTemplates select="$task"/></td> <td>${status}</td> <td>${effort}</td> |
From: Jeff J. <jef...@us...> - 2006-08-06 02:35:14
|
jeffjensen 06/08/05 19:35:13 Modified: tasks/src/plugin-resources tasks.jsl Log: Reorder columns on report to have most significant columns first. Revision Changes Path 1.8 +22 -22 maven-plugins/tasks/src/plugin-resources/tasks.jsl Index: tasks.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/src/plugin-resources/tasks.jsl,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- tasks.jsl 6 Aug 2006 02:11:40 -0000 1.7 +++ tasks.jsl 6 Aug 2006 02:35:13 -0000 1.8 @@ -40,14 +40,14 @@ <!-- Tasks for the category --> <table> <tr> - <th style='width:60px'>Creator</th> - <th style='width:60px'>Assigned to</th> <th>Task</th> + <th style='width:50px'>Status</th> + <th style='width:30px'>Effort</th> + <th style='width:60px'>Assigned to</th> + <th style='width:60px'>Creator</th> <th style='width:50px'>Start Date</th> <th style='width:50px'>End Date</th> - <th style='width:30px'>Effort</th> - <th style='width:50px'>Status</th> - <th>Version</th> + <th style='width:30px'>Version</th> </tr> <x:forEach var="task" select="task"> <j:set var="creator"><x:expr select="@creator"/></j:set> @@ -64,13 +64,13 @@ </j:if> <j:set var="version"><x:expr select="@version"/></j:set> <tr> - <td><a href="team-list.html#${creator}">${creator}</a></td> - <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> <td><jsl:applyTemplates select="$task"/></td> + <td>${status}</td> + <td>${effort}</td> + <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> + <td><a href="team-list.html#${creator}">${creator}</a></td> <td>${startdate}</td> <td>${enddate}</td> - <td>${effort}</td> - <td>${status}</td> <td>${version}</td> </tr> </x:forEach> @@ -83,14 +83,14 @@ <!-- Tasks for the subcategory --> <table> <tr> - <th style='width:60px'>Creator</th> - <th style='width:60px'>Assigned to</th> <th>Task</th> + <th style='width:50px'>Status</th> + <th style='width:30px'>Effort</th> + <th style='width:60px'>Assigned to</th> + <th style='width:60px'>Creator</th> <th style='width:50px'>Start Date</th> <th style='width:50px'>End Date</th> - <th style='width:30px'>Effort</th> - <th style='width:50px'>Status</th> - <th>Version</th> + <th style='width:30px'>Version</th> </tr> <x:forEach var="task" select="task"> <j:set var="creator"><x:expr select="@creator"/></j:set> @@ -107,14 +107,14 @@ </j:if> <j:set var="version"><x:expr select="@version"/></j:set> <tr> - <td><a href="team-list.html#${creator}">${creator}</a></td> - <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> - <td><jsl:applyTemplates select="$task"/></td> - <td>${startdate}</td> - <td>${enddate}</td> - <td>${effort}</td> - <td>${status}</td> - <td>${version}</td> + <td><jsl:applyTemplates select="$task"/></td> + <td>${status}</td> + <td>${effort}</td> + <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> + <td><a href="team-list.html#${creator}">${creator}</a></td> + <td>${startdate}</td> + <td>${enddate}</td> + <td>${version}</td> </tr> </x:forEach> </table> |
From: Jeff J. <jef...@us...> - 2006-08-06 02:11:42
|
jeffjensen 06/08/05 19:11:40 Modified: tasks/src/plugin-resources tasks.jsl Log: Undo reformat by starting with revision 1.5 (use of default values when blank stopped working for an unknown reason after reformat). Contains only reformat header code in prep for column changes. Revision Changes Path 1.7 +135 -189 maven-plugins/tasks/src/plugin-resources/tasks.jsl Index: tasks.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/src/plugin-resources/tasks.jsl,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- tasks.jsl 5 Aug 2006 16:40:19 -0000 1.6 +++ tasks.jsl 6 Aug 2006 02:11:40 -0000 1.7 @@ -1,192 +1,138 @@ <?xml version="1.0"?> + +<jsl:stylesheet + select="$doc" + xmlns:j="jelly:core" + xmlns:jsl="jelly:jsl" + xmlns:x="jelly:xml" + xmlns="dummy" trim="false"> -<jsl:stylesheet select="$doc" xmlns:j="jelly:core" xmlns:jsl="jelly:jsl" - xmlns:x="jelly:xml" xmlns="dummy" trim="false"> - - <jsl:template match="document"> - <document> - <jsl:applyTemplates select="*"/> - </document> - </jsl:template> - - <jsl:template match="body" trim="false"> - <body> - <!-- Index of categories --> - <section name="Task Categories"> - <table> - <tr> - <th style='width:50px'>Category</th> - <th>Description</th> - <th style='width:50px'>Owner</th> - </tr> - <x:forEach select="category"> - <tr> - <j:set var="name"> - <x:expr select="@name"/> - </j:set> - <j:set var="description"> - <x:expr select="@description"/> - </j:set> - <j:set var="owner"> - <x:expr select="@owner"/> - </j:set> - <td> - <a href="#${name}">${name}</a> - </td> - <td>${description}</td> - <td> - <a href="team-list.html#${owner}">${owner}</a> - </td> - </tr> - </x:forEach> - </table> - </section> - - <!-- Category details --> - <x:forEach select="category"> - <j:set var="category"> - <x:expr select="@name"/> - </j:set> - <section name="Tasks : ${category}"> - <a name="${category}"/> - <!-- Tasks for the category --> - <table> - <tr> - <th style='width:60px'>Creator</th> - <th style='width:60px'>Assigned to</th> - <th>Task</th> - <th style='width:50px'>Start Date</th> - <th style='width:50px'>End Date</th> - <th style='width:30px'>Effort</th> - <th style='width:50px'>Status</th> - <th>Version</th> - </tr> - <x:forEach var="task" select="task"> - <j:set var="creator"> - <x:expr select="@creator"/> - </j:set> - <j:if test="${empty(creator)}"> - <j:set var="creator">Unknown</j:set> - </j:if> - <j:set var="assignedto"> - <x:expr select="@assignedto"/> - </j:set> - <j:set var="startdate"> - <x:expr select="@startdate"/> - </j:set> - <j:set var="enddate"> - <x:expr select="@enddate"/> - </j:set> - <j:set var="effort"> - <x:expr select="@effort"/> - </j:set> - <j:set var="status"> - <x:expr select="@status"/> - </j:set> - <j:if test="${empty(status)}"> - <j:set var="status">Not started</j:set> - </j:if> - <j:set var="version"> - <x:expr select="@version"/> - </j:set> - <tr> - <td> - <a href="team-list.html#${creator}">${creator}</a> - </td> - <td> - <a href="team-list.html#${assignedto}">${assignedto}</a> - </td> - <td> - <jsl:applyTemplates select="$task"/> - </td> - <td>${startdate}</td> - <td>${enddate}</td> - <td>${effort}</td> - <td>${status}</td> - <td>${version}</td> - </tr> + <jsl:template match="document"> + <document> + <jsl:applyTemplates select="*"/> + </document> + </jsl:template> + + <jsl:template match="body" trim="false"> + <body> + <!-- Index of categories --> + <section name="Task Categories"> + <table> + <tr><th style='width:50px'>Category</th><th>Description</th><th style='width:50px'>Owner</th></tr> + <x:forEach select="category"> + <tr> + <j:set var="name"><x:expr select="@name"/></j:set> + <j:set var="description"><x:expr select="@description"/></j:set> + <j:set var="owner"><x:expr select="@owner"/></j:set> + <td><a href="#${name}">${name}</a></td> + <td>${description}</td> + <td><a href="team-list.html#${owner}">${owner}</a></td> + </tr> + </x:forEach> + </table> + </section> + + <!-- Category details --> + <x:forEach select="category"> + <j:set var="category"><x:expr select="@name"/></j:set> + <section name="Tasks : ${category}"> + <a name="${category}"/> + <!-- Tasks for the category --> + <table> + <tr> + <th style='width:60px'>Creator</th> + <th style='width:60px'>Assigned to</th> + <th>Task</th> + <th style='width:50px'>Start Date</th> + <th style='width:50px'>End Date</th> + <th style='width:30px'>Effort</th> + <th style='width:50px'>Status</th> + <th>Version</th> + </tr> + <x:forEach var="task" select="task"> + <j:set var="creator"><x:expr select="@creator"/></j:set> + <j:if test="${empty(creator)}"> + <j:set var="creator">Unknown</j:set> + </j:if> + <j:set var="assignedto"><x:expr select="@assignedto"/></j:set> + <j:set var="startdate"><x:expr select="@startdate"/></j:set> + <j:set var="enddate"><x:expr select="@enddate"/></j:set> + <j:set var="effort"><x:expr select="@effort"/></j:set> + <j:set var="status"><x:expr select="@status"/></j:set> + <j:if test="${empty(status)}"> + <j:set var="status">Not started</j:set> + </j:if> + <j:set var="version"><x:expr select="@version"/></j:set> + <tr> + <td><a href="team-list.html#${creator}">${creator}</a></td> + <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> + <td><jsl:applyTemplates select="$task"/></td> + <td>${startdate}</td> + <td>${enddate}</td> + <td>${effort}</td> + <td>${status}</td> + <td>${version}</td> + </tr> + </x:forEach> + </table> + + <!-- Subcategories --> + <x:forEach select="subcategory"> + <j:set var="subcategory"><x:expr select="@name"/></j:set> + <subsection name="Tasks : ${category} - ${subcategory}"> + <!-- Tasks for the subcategory --> + <table> + <tr> + <th style='width:60px'>Creator</th> + <th style='width:60px'>Assigned to</th> + <th>Task</th> + <th style='width:50px'>Start Date</th> + <th style='width:50px'>End Date</th> + <th style='width:30px'>Effort</th> + <th style='width:50px'>Status</th> + <th>Version</th> + </tr> + <x:forEach var="task" select="task"> + <j:set var="creator"><x:expr select="@creator"/></j:set> + <j:if test="${empty(creator)}"> + <j:set var="creator">Unknown</j:set> + </j:if> + <j:set var="assignedto"><x:expr select="@assignedto"/></j:set> + <j:set var="startdate"><x:expr select="@startdate"/></j:set> + <j:set var="enddate"><x:expr select="@enddate"/></j:set> + <j:set var="effort"><x:expr select="@effort"/></j:set> + <j:set var="status"><x:expr select="@status"/></j:set> + <j:if test="${empty(status)}"> + <j:set var="status">Not started</j:set> + </j:if> + <j:set var="version"><x:expr select="@version"/></j:set> + <tr> + <td><a href="team-list.html#${creator}">${creator}</a></td> + <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> + <td><jsl:applyTemplates select="$task"/></td> + <td>${startdate}</td> + <td>${enddate}</td> + <td>${effort}</td> + <td>${status}</td> + <td>${version}</td> + </tr> + </x:forEach> + </table> + </subsection> + </x:forEach> + </section> </x:forEach> - </table> - - <!-- Subcategories --> - <x:forEach select="subcategory"> - <j:set var="subcategory"> - <x:expr select="@name"/> - </j:set> - <subsection name="Tasks : ${category} - ${subcategory}"> - <!-- Tasks for the subcategory --> - <table> - <tr> - <th style='width:60px'>Creator</th> - <th style='width:60px'>Assigned to</th> - <th>Task</th> - <th style='width:50px'>Start Date</th> - <th style='width:50px'>End Date</th> - <th style='width:30px'>Effort</th> - <th style='width:50px'>Status</th> - <th>Version</th> - </tr> - <x:forEach var="task" select="task"> - <j:set var="creator"> - <x:expr select="@creator"/> - </j:set> - <j:if test="${empty(creator)}"> - <j:set var="creator">Unknown</j:set> - </j:if> - <j:set var="assignedto"> - <x:expr select="@assignedto"/> - </j:set> - <j:set var="startdate"> - <x:expr select="@startdate"/> - </j:set> - <j:set var="enddate"> - <x:expr select="@enddate"/> - </j:set> - <j:set var="effort"> - <x:expr select="@effort"/> - </j:set> - <j:set var="status"> - <x:expr select="@status"/> - </j:set> - <j:if test="${empty(status)}"> - <j:set var="status">Not started</j:set> - </j:if> - <j:set var="version"> - <x:expr select="@version"/> - </j:set> - <tr> - <td> - <a href="team-list.html#${creator}">${creator}</a> - </td> - <td> - <a href="team-list.html#${assignedto}">${assignedto}</a> - </td> - <td> - <jsl:applyTemplates select="$task"/> - </td> - <td>${startdate}</td> - <td>${enddate}</td> - <td>${effort}</td> - <td>${status}</td> - <td>${version}</td> - </tr> - </x:forEach> - </table> - </subsection> - </x:forEach> - </section> - </x:forEach> - </body> - </jsl:template> - - <!-- copy any other elements through --> - <jsl:template match="*" trim="false"> - <jsl:copy trim="false"> - <jsl:applyTemplates trim="false"/> - </jsl:copy> - </jsl:template> - - <!-- element values don't pass through as text --> - <jsl:template match="@*"/> - -</jsl:stylesheet> \ No newline at end of file + </body> + </jsl:template> + + <!-- copy any other elements through --> + <jsl:template match="*" trim="false"> + <jsl:copy trim="false"> + <jsl:applyTemplates trim="false"/> + </jsl:copy> + </jsl:template> + + <!-- element values don't pass through as text --> + <jsl:template match="@*"/> + +</jsl:stylesheet> |
From: Jeff J. <jef...@us...> - 2006-08-05 16:40:20
|
jeffjensen 06/08/05 09:40:19 Modified: tasks/src/plugin-resources tasks.jsl Log: Reformat only; no code changes. Revision Changes Path 1.6 +189 -117 maven-plugins/tasks/src/plugin-resources/tasks.jsl Index: tasks.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/src/plugin-resources/tasks.jsl,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- tasks.jsl 5 Aug 2006 04:05:13 -0000 1.5 +++ tasks.jsl 5 Aug 2006 16:40:19 -0000 1.6 @@ -1,120 +1,192 @@ <?xml version="1.0"?> - -<jsl:stylesheet - select="$doc" - xmlns:j="jelly:core" - xmlns:jsl="jelly:jsl" - xmlns:x="jelly:xml" - xmlns="dummy" trim="false"> - <jsl:template match="document"> - <document> - <jsl:applyTemplates select="*"/> - </document> - </jsl:template> - - <jsl:template match="body" trim="false"> - <body> - <!-- Index of categories --> - <section name="Task Categories"> - <table> - <tr><th style='width:50px'>Category</th><th>Description</th><th style='width:50px'>Owner</th></tr> - <x:forEach select="category"> - <tr> - <j:set var="name"><x:expr select="@name"/></j:set> - <j:set var="description"><x:expr select="@description"/></j:set> - <j:set var="owner"><x:expr select="@owner"/></j:set> - <td><a href="#${name}">${name}</a></td> - <td>${description}</td> - <td><a href="team-list.html#${owner}">${owner}</a></td> - </tr> - </x:forEach> - </table> - </section> - - <!-- Category details --> - <x:forEach select="category"> - <j:set var="category"><x:expr select="@name"/></j:set> - <section name="Tasks : ${category}"> - <a name="${category}"/> - <!-- Tasks for the category --> - <table> - <tr><th style='width:60px'>Creator</th><th style='width:60px'>Assigned to</th><th>Task</th><th style='width:50px'>Start Date</th><th style='width:50px'>End Date</th><th style='width:30px'>Effort</th><th style='width:50px'>Status</th><th>Version</th></tr> - <x:forEach var="task" select="task"> - <j:set var="creator"><x:expr select="@creator"/></j:set> - <j:if test="${empty(creator)}"> - <j:set var="creator">Unknown</j:set> - </j:if> - <j:set var="assignedto"><x:expr select="@assignedto"/></j:set> - <j:set var="startdate"><x:expr select="@startdate"/></j:set> - <j:set var="enddate"><x:expr select="@enddate"/></j:set> - <j:set var="effort"><x:expr select="@effort"/></j:set> - <j:set var="status"><x:expr select="@status"/></j:set> - <j:if test="${empty(status)}"> - <j:set var="status">Not started</j:set> - </j:if> - <j:set var="version"><x:expr select="@version"/></j:set> - <tr> - <td><a href="team-list.html#${creator}">${creator}</a></td> - <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> - <td><jsl:applyTemplates select="$task"/></td> - <td>${startdate}</td> - <td>${enddate}</td> - <td>${effort}</td> - <td>${status}</td> - <td>${version}</td> - </tr> - </x:forEach> - </table> - - <!-- Subcategories --> - <x:forEach select="subcategory"> - <j:set var="subcategory"><x:expr select="@name"/></j:set> - <subsection name="Tasks : ${category} - ${subcategory}"> - <!-- Tasks for the subcategory --> - <table> - <tr><th style='width:60px'>Creator</th><th style='width:60px'>Assigned to</th><th>Task</th><th style='width:50px'>Start Date</th><th style='width:50px'>End Date</th><th style='width:30px'>Effort</th><th style='width:50px'>Status</th><th>Version</th></tr> - <x:forEach var="task" select="task"> - <j:set var="creator"><x:expr select="@creator"/></j:set> - <j:if test="${empty(creator)}"> - <j:set var="creator">Unknown</j:set> - </j:if> - <j:set var="assignedto"><x:expr select="@assignedto"/></j:set> - <j:set var="startdate"><x:expr select="@startdate"/></j:set> - <j:set var="enddate"><x:expr select="@enddate"/></j:set> - <j:set var="effort"><x:expr select="@effort"/></j:set> - <j:set var="status"><x:expr select="@status"/></j:set> - <j:if test="${empty(status)}"> - <j:set var="status">Not started</j:set> - </j:if> - <j:set var="version"><x:expr select="@version"/></j:set> - <tr> - <td><a href="team-list.html#${creator}">${creator}</a></td> - <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> - <td><jsl:applyTemplates select="$task"/></td> - <td>${startdate}</td> - <td>${enddate}</td> - <td>${effort}</td> - <td>${status}</td> - <td>${version}</td> - </tr> - </x:forEach> - </table> - </subsection> - </x:forEach> - </section> +<jsl:stylesheet select="$doc" xmlns:j="jelly:core" xmlns:jsl="jelly:jsl" + xmlns:x="jelly:xml" xmlns="dummy" trim="false"> + + <jsl:template match="document"> + <document> + <jsl:applyTemplates select="*"/> + </document> + </jsl:template> + + <jsl:template match="body" trim="false"> + <body> + <!-- Index of categories --> + <section name="Task Categories"> + <table> + <tr> + <th style='width:50px'>Category</th> + <th>Description</th> + <th style='width:50px'>Owner</th> + </tr> + <x:forEach select="category"> + <tr> + <j:set var="name"> + <x:expr select="@name"/> + </j:set> + <j:set var="description"> + <x:expr select="@description"/> + </j:set> + <j:set var="owner"> + <x:expr select="@owner"/> + </j:set> + <td> + <a href="#${name}">${name}</a> + </td> + <td>${description}</td> + <td> + <a href="team-list.html#${owner}">${owner}</a> + </td> + </tr> + </x:forEach> + </table> + </section> + + <!-- Category details --> + <x:forEach select="category"> + <j:set var="category"> + <x:expr select="@name"/> + </j:set> + <section name="Tasks : ${category}"> + <a name="${category}"/> + <!-- Tasks for the category --> + <table> + <tr> + <th style='width:60px'>Creator</th> + <th style='width:60px'>Assigned to</th> + <th>Task</th> + <th style='width:50px'>Start Date</th> + <th style='width:50px'>End Date</th> + <th style='width:30px'>Effort</th> + <th style='width:50px'>Status</th> + <th>Version</th> + </tr> + <x:forEach var="task" select="task"> + <j:set var="creator"> + <x:expr select="@creator"/> + </j:set> + <j:if test="${empty(creator)}"> + <j:set var="creator">Unknown</j:set> + </j:if> + <j:set var="assignedto"> + <x:expr select="@assignedto"/> + </j:set> + <j:set var="startdate"> + <x:expr select="@startdate"/> + </j:set> + <j:set var="enddate"> + <x:expr select="@enddate"/> + </j:set> + <j:set var="effort"> + <x:expr select="@effort"/> + </j:set> + <j:set var="status"> + <x:expr select="@status"/> + </j:set> + <j:if test="${empty(status)}"> + <j:set var="status">Not started</j:set> + </j:if> + <j:set var="version"> + <x:expr select="@version"/> + </j:set> + <tr> + <td> + <a href="team-list.html#${creator}">${creator}</a> + </td> + <td> + <a href="team-list.html#${assignedto}">${assignedto}</a> + </td> + <td> + <jsl:applyTemplates select="$task"/> + </td> + <td>${startdate}</td> + <td>${enddate}</td> + <td>${effort}</td> + <td>${status}</td> + <td>${version}</td> + </tr> </x:forEach> - </body> - </jsl:template> - - <!-- copy any other elements through --> - <jsl:template match="*" trim="false"> - <jsl:copy trim="false"> - <jsl:applyTemplates trim="false"/> - </jsl:copy> - </jsl:template> - - <!-- element values don't pass through as text --> - <jsl:template match="@*"/> - -</jsl:stylesheet> + </table> + + <!-- Subcategories --> + <x:forEach select="subcategory"> + <j:set var="subcategory"> + <x:expr select="@name"/> + </j:set> + <subsection name="Tasks : ${category} - ${subcategory}"> + <!-- Tasks for the subcategory --> + <table> + <tr> + <th style='width:60px'>Creator</th> + <th style='width:60px'>Assigned to</th> + <th>Task</th> + <th style='width:50px'>Start Date</th> + <th style='width:50px'>End Date</th> + <th style='width:30px'>Effort</th> + <th style='width:50px'>Status</th> + <th>Version</th> + </tr> + <x:forEach var="task" select="task"> + <j:set var="creator"> + <x:expr select="@creator"/> + </j:set> + <j:if test="${empty(creator)}"> + <j:set var="creator">Unknown</j:set> + </j:if> + <j:set var="assignedto"> + <x:expr select="@assignedto"/> + </j:set> + <j:set var="startdate"> + <x:expr select="@startdate"/> + </j:set> + <j:set var="enddate"> + <x:expr select="@enddate"/> + </j:set> + <j:set var="effort"> + <x:expr select="@effort"/> + </j:set> + <j:set var="status"> + <x:expr select="@status"/> + </j:set> + <j:if test="${empty(status)}"> + <j:set var="status">Not started</j:set> + </j:if> + <j:set var="version"> + <x:expr select="@version"/> + </j:set> + <tr> + <td> + <a href="team-list.html#${creator}">${creator}</a> + </td> + <td> + <a href="team-list.html#${assignedto}">${assignedto}</a> + </td> + <td> + <jsl:applyTemplates select="$task"/> + </td> + <td>${startdate}</td> + <td>${enddate}</td> + <td>${effort}</td> + <td>${status}</td> + <td>${version}</td> + </tr> + </x:forEach> + </table> + </subsection> + </x:forEach> + </section> + </x:forEach> + </body> + </jsl:template> + + <!-- copy any other elements through --> + <jsl:template match="*" trim="false"> + <jsl:copy trim="false"> + <jsl:applyTemplates trim="false"/> + </jsl:copy> + </jsl:template> + + <!-- element values don't pass through as text --> + <jsl:template match="@*"/> + +</jsl:stylesheet> \ No newline at end of file |
From: Jeff J. <jef...@us...> - 2006-08-05 04:06:00
|
jeffjensen 06/08/04 21:05:59 Modified: tasks/xdocs changes.xml Log: Add 1.3 changes. Revision Changes Path 1.4 +27 -3 maven-plugins/tasks/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/changes.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- changes.xml 22 May 2004 05:17:42 -0000 1.3 +++ changes.xml 5 Aug 2006 04:05:59 -0000 1.4 @@ -3,16 +3,40 @@ <properties> <title>Changes</title> <author email="an...@aj...">Andy Jefferson</author> + <author email="jef...@so...">Jeff Jensen</author> </properties> <body> - <release version="1.2" date="25 May 2004"> + <release version="1.3.0-SNAPSHOT" date="in CVS" description="New properties, minor corrections"> + <action dev="carlossg" type="fix"> + Make build with Maven 1.1 and correct the URL tag. + </action> + <action dev="jeffjensen" type="update"> + Improvements to web site docs. + </action> + <action dev="jeffjensen" type="add"> + Added maven.tasks.source.file property + to customize the location and name of the source file. + </action> + <action dev="jeffjensen" type="add"> + Added maven.tasks.report.file property + to customize the name of the report file + (location currently cannot change or it does not find it). + </action> + <action dev="jeffjensen" type="fix"> + Make work with Maven 1.1 beta 3 (corrected JSL). + </action> + <action dev="jeffjensen" type="add"> + task element now supports HTML (e.g. can use lists in task). + </action> + </release> + <release version="1.2.0" date="25 May 2004"> <action dev="andy_jefferson" type="add">Added subcategories, and version column. Added default for status and creator columns when not specified.</action> </release> - <release version="1.1" date="25 Nov 2003"> + <release version="1.1.0" date="25 Nov 2003"> <action dev="andy_jefferson" type="add">Added hyperlinks to creator, owner users</action> </release> - <release version="1.0" date="27 Oct 2003"> + <release version="1.0.0" date="27 Oct 2003"> <action dev="andy_jefferson" type="add">Initial release</action> </release> </body> |
From: Jeff J. <jef...@us...> - 2006-08-05 04:05:14
|
jeffjensen 06/08/04 21:05:13 Modified: tasks/src/plugin-resources tasks.jsl Log: Correct so works with Maven 1.1 b3. Also changed to support HTML in task element. Revision Changes Path 1.5 +2 -2 maven-plugins/tasks/src/plugin-resources/tasks.jsl Index: tasks.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/src/plugin-resources/tasks.jsl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- tasks.jsl 22 May 2004 05:17:42 -0000 1.4 +++ tasks.jsl 5 Aug 2006 04:05:13 -0000 1.5 @@ -57,7 +57,7 @@ <tr> <td><a href="team-list.html#${creator}">${creator}</a></td> <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> - <td><x:expr select="string(.)"/></td> + <td><jsl:applyTemplates select="$task"/></td> <td>${startdate}</td> <td>${enddate}</td> <td>${effort}</td> @@ -91,7 +91,7 @@ <tr> <td><a href="team-list.html#${creator}">${creator}</a></td> <td><a href="team-list.html#${assignedto}">${assignedto}</a></td> - <td><x:expr select="string(.)"/></td> + <td><jsl:applyTemplates select="$task"/></td> <td>${startdate}</td> <td>${enddate}</td> <td>${effort}</td> |
From: Jeff J. <jef...@us...> - 2006-08-05 04:02:33
|
jeffjensen 06/08/04 21:02:32 Modified: tasks/xdocs index.xml Log: Updated example tasks.xml file to show all attributes and subcategory element. Add installation instructions and reorg. Revision Changes Path 1.3 +66 -6 maven-plugins/tasks/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/index.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- index.xml 29 Oct 2003 21:29:43 -0000 1.2 +++ index.xml 5 Aug 2006 04:02:32 -0000 1.3 @@ -4,30 +4,90 @@ <properties> <title>Maven Tasks Plug-in</title> <author email="an...@aj...">Andy Jefferson</author> + <author email="jef...@so...">Jeff Jensen</author> </properties> <body> <section name="Maven Tasks Plug-in"> <p> - In order to use this plugin, simply create a <code>tasks.xml</code> - file in your <code>xdocs</code> directory. Here's an example of a - typical <code>tasks.xml</code>, showing the syntax: + This plugin generates an HTML page of tasks + from a tasks XML file. + </p> + </section> + <section name="Instructions"> + <ol> + <li> + Install the plugin. + Preferred manner is with a dependency in the project.xml file + (use the desired plugin version, of course): +<source><![CDATA[ +<dependency> + <groupId>maven-plugins</groupId> + <artifactId>maven-tasks-plugin</artifactId> + <version>1.3.0</version> + <type>plugin</type> +</dependency> +]]></source> + </li> + <li> + Add the tasks plugin to the report section in the project.xml file: +<source><![CDATA[ +<reports> + ... + <report>maven-tasks-plugin</report> + ... +</reports> +]]></source> + </li> + <li> + Create a tasks.xml file in the project's xdocs directory + (see layout in format section below). + <p> + Note the output file name defaults to "tasks-report.html". + Check the properties for how to customize it. + </p> + </li> + </ol> + </section> + <section name="tasks.xml Format"> + <p> + Here's an example of a typical <code>tasks.xml</code>, + showing the syntax: <source><![CDATA[ <document> <properties> - <title>Page title</title> + <title>Tasks</title> <author email="an...@aj...">Andy Jefferson</author> + <author email="jef...@so...">Jeff Jensen</author> </properties> <body> - <category name="GUI"> - <task creator="andy_jefferson" assignedto="fred" startdate="25/10/2003" enddate="25/11/2003" effort="30 hours" status="In Progress">Provide a Swing GUI</task> + <category name="GUI" description="The GUI component" owner="Steve"> + <task creator="andy_jefferson" assignedto="fred" startdate="25/10/2003" enddate="25/11/2003" effort="30 hours" status="In Progress" version"1"> + Provide a Swing GUI. + </task> + </category> + + <category name="Maven" description="The GUI component" owner="Steve"> + <subcategory name="Builds"> + <task creator="jeffjensen" assignedto="mattpurland" startdate="25/8/2006" enddate="28/8/2006" effort="1 hour" status="In Progress" version"1"> + Setup build for new 2.1 codeline. + </task> + </subcategory> + <subcategory name="FAQs"> + <task creator="jeffjensen" assignedto="jeffjensen" startdate="25/8/2006" enddate="28/8/2006" effort="1 hour" status="In Progress" version"1"> + Update Testing FAQ with dbUnit info. + </task> + </subcategory> </category> </body> </document> ]]></source> </p> + <p> + Note the optional subcategory element. + </p> </section> </body> </document> |
From: Jeff J. <jef...@us...> - 2006-08-05 03:25:44
|
jeffjensen 06/08/04 20:25:42 Modified: tasks/xdocs properties.xml Log: Docs for new properties. Revision Changes Path 1.2 +35 -3 maven-plugins/tasks/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/properties.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- properties.xml 28 Oct 2003 21:27:34 -0000 1.1 +++ properties.xml 5 Aug 2006 03:25:42 -0000 1.2 @@ -4,13 +4,45 @@ <properties> <title>Tasks Properties</title> <author email="an...@aj...">Andy Jefferson</author> + <author email="jef...@so...">Jeff Jensen</author> </properties> <body> <section name="Tasks Properties"> - <p> - There are no properties for this plugin. - </p> + <table> + <tr> + <th>Property</th> + <th>Default</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.tasks.source.file</td> + <td>${maven.docs.src}/tasks.xml</td> + <td>Yes</td> + <td> + The path and name of the tasks source xml file. + This is the source file created by users. + </td> + </tr> + <tr> + <td>maven.tasks.report.file</td> +<!-- + <td>${maven.gen.docs}/tasks-report.xml</td> +--> + <td>tasks-report.xml</td> + <td>Yes</td> + <td> + The name of the tasks report xml file. + This is the file generated by the Tasks plugin + that the XDoc plugin transforms into an HTML file. + <p> + Currently, the plugin fails when also specifying a location, + so only specify if file name when changing from the default. + </p> + </td> + </tr> + </table> </section> </body> </document> |
From: Jeff J. <jef...@us...> - 2006-08-05 03:24:21
|
jeffjensen 06/08/04 20:24:19 Modified: tasks plugin.properties plugin.jelly Log: Move file names to properties. Add "tasks" goal for convenience. Revision Changes Path 1.2 +4 -0 maven-plugins/tasks/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/plugin.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.properties 28 Oct 2003 21:27:34 -0000 1.1 +++ plugin.properties 5 Aug 2006 03:24:19 -0000 1.2 @@ -3,3 +3,7 @@ # ------------------------------------------------------------------- # tasks plugin. # ------------------------------------------------------------------- +maven.tasks.source.file=${maven.docs.src}/tasks.xml +#specifying a different dir causes it to fail for currently unknown reason +#maven.tasks.report.file=${maven.gen.docs}/tasks-report.xml +maven.tasks.report.file=tasks-report.xml 1.2 +6 -3 maven-plugins/tasks/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/plugin.jelly,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.jelly 28 Oct 2003 21:27:34 -0000 1.1 +++ plugin.jelly 5 Aug 2006 03:24:19 -0000 1.2 @@ -8,7 +8,7 @@ xmlns:doc="doc"> <goal name="maven-tasks-plugin:register"> - <util:file var="tasks" name="${maven.docs.src}/tasks.xml"/> + <util:file var="tasks" name="${maven.tasks.source.file}"/> <j:if test="${tasks.exists()}"> <doc:registerReport name="Tasks" @@ -22,6 +22,9 @@ <doc:deregisterReport name="Tasks"/> </goal> + <goal name="tasks" description="Generate a tasks report" + prereqs="tasks:report"/> + <!-- ================================================================== --> <!-- T A S K S R E P O R T --> <!-- ================================================================== --> @@ -29,8 +32,8 @@ name="tasks:report" description="Generate a tasks report"> <doc:jsl - input="${maven.docs.src}/tasks.xml" - output="tasks-report.xml" + input="${maven.tasks.source.file}" + output="${maven.tasks.report.file}" stylesheet="${plugin.resources}/tasks.jsl" encoding="${maven.docs.outputencoding}" outputMode="xml" |
From: Jeff J. <jef...@us...> - 2006-08-05 03:13:39
|
jeffjensen 06/08/04 20:13:38 Modified: tasks project.xml Log: Add schema ref for validation. Make it extend from plugin base project and remove dupe elements. Add site dir. Correct anon and developer CVS connections and URL. Add Versions section. Setup for next release. Revision Changes Path 1.9 +43 -6 maven-plugins/tasks/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/project.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- project.xml 11 Oct 2005 06:29:10 -0000 1.8 +++ project.xml 5 Aug 2006 03:13:38 -0000 1.9 @@ -1,11 +1,15 @@ <?xml version="1.0" encoding="UTF-8"?> -<project> +<project xmlns="http://maven.apache.org/POM/3.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> + <!-- extend>../project.xml</extend --> + <extend>${basedir}/../plugin-project.xml</extend> <pomVersion>3</pomVersion> <id>maven-tasks-plugin</id> <name>Tasks Plug-in</name> - <currentVersion>1.2.0</currentVersion> + <currentVersion>1.3.0-SNAPSHOT</currentVersion> <organization> <name>SourceForge</name> <url>http://www.sourceforge.net/projects/maven-plugins/</url> @@ -13,13 +17,37 @@ </organization> <shortDescription>Produce tasks report</shortDescription> <url>http://maven-plugins.sourceforge.net/${pom.artifactId}</url> - <issueTrackingUrl>http://sourceforge.net/tracker/?group_id=61626</issueTrackingUrl> - <siteAddress>maven-plugins.sourceforge.net</siteAddress> + <!-- issue tracking url, siteAddress are in parent --> + <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-tasks-plugin/</siteDirectory> <repository> - <connection>scm:cvs:pserver:an...@cv...:/cvsroot/maven-plugins/:maven-plugins</connection> - <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/</url> + <connection>scm:cvs:pserver:ano...@ma...:/cvsroot/maven-plugins:maven-plugins/tasks</connection> + <developerConnection>scm:cvs:ext:${maven.username}@maven-plugins.cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/tasks</developerConnection> + <url>http://maven-plugins.cvs.sourceforge.net/maven-plugins/maven-plugins/tasks</url> </repository> + <versions> + <version> + <id>1.0.0</id> + <name>1.0.0</name> + <tag>MAVEN_TASKS_1_0_0</tag> + </version> + <version> + <id>1.1.0</id> + <name>1.1.0</name> + <tag>MAVEN_TASKS_1_1_0</tag> + </version> + <version> + <id>1.2.0</id> + <name>1.2.0</name> + <tag>MAVEN_TASKS_1_2_0</tag> + </version> + <version> + <id>1.3.0-SNAPSHOT</id> + <name>1.3.0-SNAPSHOT</name> + <tag>MAVEN_TASKS_1_3_0</tag> + </version> + </versions> + <developers> <developer> <name>Andy Jefferson</name> @@ -31,6 +59,15 @@ <role>Java Developer</role> </roles> </developer> + <developer> + <name>Jeff Jensen</name> + <id>jeffjensen</id> + <email>jef...@us...</email> + <organization>Sourceforge</organization> + <roles> + <role>Developer</role> + </roles> + </developer> </developers> <dependencies/> |
From: Jeff J. <jef...@us...> - 2006-08-05 03:02:41
|
jeffjensen 06/08/04 20:02:38 Added: tasks/.settings org.eclipse.core.resources.prefs tasks .project Log: Add Eclipse files. Revision Changes Path 1.1 maven-plugins/tasks/.settings/org.eclipse.core.resources.prefs Index: org.eclipse.core.resources.prefs =================================================================== #Thu Aug 03 22:47:17 CDT 2006 eclipse.preferences.version=1 encoding//src/plugin-resources/tasks.jsl=UTF-8 encoding/plugin.jelly=UTF-8 1.1 maven-plugins/tasks/.project Index: .project =================================================================== <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>maven-tasks-plugin</name> <comment></comment> <projects> </projects> <buildSpec> </buildSpec> <natures> </natures> </projectDescription> |
From: Jeff J. <jef...@us...> - 2006-08-05 03:02:41
|
jeffjensen 06/08/04 20:02:35 maven-plugins/tasks/.settings - New directory |
From: Arnaud H. <ahe...@us...> - 2006-08-04 21:28:08
|
aheritier 06/08/04 14:28:07 Modified: . project.xml Log: Update description and CVS access Revision Changes Path 1.32 +5 -4 maven-plugins/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/project.xml,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- project.xml 11 Oct 2005 05:46:39 -0000 1.31 +++ project.xml 4 Aug 2006 21:28:06 -0000 1.32 @@ -21,7 +21,7 @@ <description> <![CDATA[ <P> - Maven Plugins is a collection of plugins for <a href="http://maven.apache.org/">Apache Jakarta Maven</a>. These plugins are currently not part of Maven since they use an incompatible licence agreement or the JARs upon which they depend use an incompatible license agreement. + Maven Plugins is a collection of plugins for <a href="http://maven.apache.org/maven-1.x/">Apache Maven</a>. These plugins are currently not part of Maven since they use an incompatible licence agreement or the JARs upon which they depend use an incompatible license agreement. </P> <P> Please refer to the <A HREF="projects-overview.html">Plugins @@ -30,7 +30,7 @@ ]]> </description> - <shortDescription>Collection of plugins for Apache Jakarta Maven</shortDescription> + <shortDescription>Collection of plugins for Apache Maven</shortDescription> <url>http://${pom.artifactId}.sourceforge.net</url> <issueTrackingUrl>http://sourceforge.net/tracker/?group_id=61626</issueTrackingUrl> @@ -39,8 +39,9 @@ <distributionDirectory>/home/groups/${pom.artifactId.substring(0,1)}/${pom.artifactId.substring(0,2)}/${pom.artifactId}/htdocs/distributions/</distributionDirectory> <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/${pom.artifactId}:${pom.artifactId}</connection> - <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/${pom.artifactId}/${pom.artifactId}/</url> + <connection>scm:cvs:pserver:ano...@ma...:/cvsroot/${pom.artifactId}:${pom.artifactId}</connection> + <developerConnection>scm:cvs:ext:dev...@ma...:/cvsroot/${pom.artifactId}:${pom.artifactId}</developerConnection> + <url>http://maven-plugins.cvs.sourceforge.net/maven-plugins/maven-plugins/</url> </repository> <versions> |
From: Jeff J. <jef...@us...> - 2006-07-30 22:33:00
|
jeffjensen 06/07/30 15:32:57 Modified: jaxb plugin.jelly Log: Have ant classpath correctly use dependency classpath. Issue 1336145. Patch by "brice_c". Revision Changes Path 1.5 +1 -1 maven-plugins/jaxb/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/plugin.jelly,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.jelly 24 Sep 2005 10:10:29 -0000 1.4 +++ plugin.jelly 30 Jul 2006 22:32:57 -0000 1.5 @@ -30,7 +30,7 @@ excludes="${maven.jaxb.binding.excludes}"/> <ant:classpath> <ant:pathelement path="${maven.build.dest}" /> - <ant:pathelement path="${maven.dependency.classpath}" /> + <ant:path refid="maven.dependency.classpath" /> </ant:classpath> </xjc> <ant:touch file="${maven.jaxb.build.dir}/.flagfile" /> |
From: Jeff J. <jef...@us...> - 2006-07-30 22:30:54
|
jeffjensen 06/07/30 15:30:52 Modified: jaxb project.xml jaxb/xdocs changes.xml Added: jaxb/.settings org.eclipse.core.resources.prefs Log: Prep files for release 1.2. Revision Changes Path 1.10 +15 -1 maven-plugins/jaxb/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jaxb/project.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- project.xml 11 Oct 2005 06:29:05 -0000 1.9 +++ project.xml 30 Jul 2006 22:30:52 -0000 1.10 @@ -3,7 +3,7 @@ <extend>${basedir}/../plugin-project.xml</extend> <id>maven-jaxb-plugin</id> <name>Maven JAXB Plugin</name> - <currentVersion>1.1.1</currentVersion> + <currentVersion>1.2-SNAPSHOT</currentVersion> <inceptionYear>2002</inceptionYear> <description> @@ -29,6 +29,11 @@ <name>1.1.0</name> <tag>MAVEN_JAXB_PLUGIN_1_1_0</tag> </version> + <version> + <id>1.2</id> + <name>1.2</name> + <tag>MAVEN_JAXB_PLUGIN_1_2</tag> + </version> </versions> <developers> @@ -54,6 +59,15 @@ <url>http://users.pandora.be/geoffrey</url> <timezone>+1</timezone> </developer> + <developer> + <name>Jeff Jensen</name> + <id>jeffjensen</id> + <email>jef...@us...</email> + <organization>Sourceforge</organization> + <roles> + <role>Developer</role> + </roles> + </developer> </developers> <contributors> <contributor> 1.4 +5 -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.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- changes.xml 24 Sep 2005 10:10:29 -0000 1.3 +++ changes.xml 30 Jul 2006 22:30:52 -0000 1.4 @@ -6,6 +6,11 @@ </properties> <body> + <release version="1.2" date="in CVS"> + <action dev="jeffjensen" type="fix" issue="1336145" due-to="brice_c"> + Does not use dependency classpath. + </action> + </release> <release version="1.1.1" date="2003-11-12"> <action dev="ge0ffrey" type="update"> Added maven.jaxb.schema.src.dir and maven.jaxb.binding.src.dir that default to 1.1 maven-plugins/jaxb/.settings/org.eclipse.core.resources.prefs Index: org.eclipse.core.resources.prefs =================================================================== #Sun Jul 30 16:08:14 CDT 2006 eclipse.preferences.version=1 encoding/plugin.jelly=UTF-8 |
From: Jeff J. <jef...@us...> - 2006-07-30 22:30:48
|
jeffjensen 06/07/30 15:30:46 maven-plugins/jaxb/.settings - New directory |
From: Jeff J. <jef...@us...> - 2006-07-30 21:51:48
|
jeffjensen 06/07/30 14:51:46 Modified: dbunit/src/main/net/sourceforge/mavenplugins/dbunit DbUnitTool.java Log: Add cnx.setAutoCommit(true) per issue 1115849, patch by Stephen Cooper. Revision Changes Path 1.4 +6 -3 maven-plugins/dbunit/src/main/net/sourceforge/mavenplugins/dbunit/DbUnitTool.java Index: DbUnitTool.java =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/src/main/net/sourceforge/mavenplugins/dbunit/DbUnitTool.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- DbUnitTool.java 5 Aug 2004 00:48:44 -0000 1.3 +++ DbUnitTool.java 30 Jul 2006 21:51:46 -0000 1.4 @@ -147,9 +147,12 @@ */ protected IDatabaseConnection getConnection() throws SQLException, ClassNotFoundException { - Class driverClass = Class.forName(getDriverClassName()); - Connection jdbcConnection = DriverManager.getConnection( - getUrl(), getUser(), getPassword()); + Class driverClass = Class.forName(getDriverClassName()); + Connection jdbcConnection = + DriverManager.getConnection(getUrl(), getUser(), getPassword()); + + jdbcConnection.setAutoCommit(true); + IDatabaseConnection connection = null; if (getSchema() == null) { |
From: Jeff J. <jef...@us...> - 2006-07-30 21:51:26
|
jeffjensen 06/07/30 14:51:25 Modified: dbunit project.xml dbunit/xdocs changes.xml Log: Prep files for 1.8 release. Revision Changes Path 1.40 +6 -1 maven-plugins/dbunit/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/project.xml,v retrieving revision 1.39 retrieving revision 1.40 diff -u -r1.39 -r1.40 --- project.xml 15 May 2006 02:01:06 -0000 1.39 +++ project.xml 30 Jul 2006 21:51:25 -0000 1.40 @@ -11,7 +11,7 @@ <name>dbUnit Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.7</currentVersion> + <currentVersion>1.8-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2003</inceptionYear> @@ -65,6 +65,11 @@ <name>1.7</name> <tag>MAVEN_PLUGINS_DBUNIT_1_7</tag> </version> + <version> + <id>1.8</id> + <name>1.8</name> + <tag>MAVEN_PLUGINS_DBUNIT_1_8</tag> + </version> </versions> <!-- mailingLists is in parent --> 1.24 +7 -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.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- changes.xml 25 Apr 2006 03:04:43 -0000 1.23 +++ changes.xml 30 Jul 2006 21:51:25 -0000 1.24 @@ -6,6 +6,13 @@ <author email="dio...@so...">dIon Gillard</author> </properties> <body> + <release version="1.8" date="in CVS" + description="Add autocommit, "> + <action dev="jeffjensen" type="add" issue="1115849" due-to="Stephen Cooper"> + Set setAutoCommit(true) on the db connection, + as some drivers need it set. + </action> + </release> <release version="1.7" date="2006-04-24" description="Implemented optional lists of tables and queries that dictate data exported in generate-dataset. Added more properties that dbUnit supports. Updated docs for new features and properties. Corrected a couple of minor doc errors/misc cleanup. Added 'Default Value' column to properties doc."> <action dev="jeffjensen" type="add" issue="1406821">Implemented optional lists of tables and queries that dictate data exported in generate-dataset.</action> |
From: Jeff J. <jef...@us...> - 2006-07-30 03:45:07
|
jeffjensen 06/07/29 20:45:06 Modified: javaapp project.xml javaapp/xdocs changes.xml Log: Update project and change files for new snapshot and fix info. Revision Changes Path 1.19 +21 -3 maven-plugins/javaapp/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/project.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- project.xml 11 Oct 2005 06:29:05 -0000 1.18 +++ project.xml 30 Jul 2006 03:45:05 -0000 1.19 @@ -1,6 +1,9 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<project> +<project xmlns="http://maven.apache.org/POM/3.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> + <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> <id>maven-javaapp-plugin</id> @@ -20,11 +23,17 @@ <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/${pom.artifactId}/</siteDirectory> <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/javaapp</connection> - <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/javaapp/</url> + <connection>scm:cvs:pserver:ano...@ma...:/cvsroot/maven-plugins:maven-plugins/javaapp</connection> + <developerConnection>scm:cvs:ext:${maven.username}@maven-plugins.cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/javaapp</developerConnection> + <url>http://maven-plugins.cvs.sourceforge.net/maven-plugins/maven-plugins/javaapp</url> </repository> <versions> + <version> + <id>1.4</id> + <name>1.4</name> + <tag>MAVEN_JAVAAPP_1_4</tag> + </version> </versions> <branches> @@ -52,6 +61,15 @@ </roles> <timezone>+1</timezone> </developer> + <developer> + <name>Jeff Jensen</name> + <id>jeffjensen</id> + <email>jef...@us...</email> + <roles> + <role>Java Developer</role> + </roles> + <timezone>-6</timezone> + </developer> </developers> <dependencies> 1.10 +3 -1 maven-plugins/javaapp/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/xdocs/changes.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- changes.xml 25 Aug 2005 08:34:50 -0000 1.9 +++ changes.xml 30 Jul 2006 03:45:05 -0000 1.10 @@ -12,8 +12,10 @@ </properties> <body> - <release version="1.4-SNAPSHOT" date="in CVS"> + <action dev="jeffjensen" type="fix" issue="1436490" due-to="Daniel Schulz"> + EJB jars are not bundled + </action> </release> <release version="1.3.1" date="2005-08-25"> <action dev="joehni" type="fix" due-to="Eric Hartmann"> |
From: Jeff J. <jef...@us...> - 2006-07-30 03:44:13
|
jeffjensen 06/07/29 20:44:12 Modified: javaapp plugin.jelly Log: Apply fix for bug 1436490 "EJB jars are not bundled" by Daniel Schulz (Thanks Daniel!). Revision Changes Path 1.15 +1 -1 maven-plugins/javaapp/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/plugin.jelly,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- plugin.jelly 23 Aug 2005 13:24:04 -0000 1.14 +++ plugin.jelly 30 Jul 2006 03:44:11 -0000 1.15 @@ -59,7 +59,7 @@ <j:set var="excludes" value="${maven.javaapp.jar.exclude}"/> <j:forEach var="lib" items="${pom.artifacts}"> <j:set var="dep" value="${lib.dependency}"/> - <j:if test="${dep.getProperty('uberjar.bundle')=='false' || dep.type !='jar'}"> + <j:if test="${dep.getProperty('uberjar.bundle')=='false' || !(dep.type =='jar' || dep.type=='ejb')}"> <j:if test="${!empty(excludes)}"> <j:set var="excludes" value="${excludes},${dep.artifactId}"/> </j:if> |