dion 2003/06/02 23:36:56
Modified: src/plugins-build/clean project.properties plugin.jelly
project.xml
src/plugins-build/clean/xdocs goals.xml changes.xml
index.xml
Log:
Apply patch for MAVEN-459
Fix bugs in 'new' goals
Up project version for changes
Document changes
Revision Changes Path
1.2 +4 -0 maven/src/plugins-build/clean/project.properties
Index: project.properties
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/clean/project.properties,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- project.properties 5 Apr 2003 08:03:17 -0000 1.1
+++ project.properties 3 Jun 2003 06:36:56 -0000 1.2
@@ -1,3 +1,7 @@
# -------------------------------------------------------------------
# P R O J E C T P R O P E R T I E S
# -------------------------------------------------------------------
+maven.xdoc.date=left
+maven.xdoc.version=${pom.currentVersion}
+#maven.xdoc.developmentProcessUrl=http://maven.apache.org/development-process.html
+maven.license.licenseFile=${basedir}/../../../LICENSE.txt
1.4 +4 -4 maven/src/plugins-build/clean/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/clean/plugin.jelly,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- plugin.jelly 7 Apr 2003 16:02:13 -0000 1.3
+++ plugin.jelly 3 Jun 2003 06:36:56 -0000 1.4
@@ -15,14 +15,14 @@
<goal name="clean:classes"
description="Remove all build and test classes">
- <ant:delete dir="maven.build.dest"/>
- <ant:delete dir="maven.test.dest"/>
+ <ant:delete dir="${maven.build.dest}"/>
+ <ant:delete dir="${maven.test.dest}"/>
</goal>
<goal name="clean:docs"
description="Remove all docs and generated xdocs">
- <ant:delete dir="maven.gen.docs"/>
- <ant:delete dir="maven.docs.dest"/>
+ <ant:delete dir="${maven.gen.docs}"/>
+ <ant:delete dir="${maven.docs.dest}"/>
</goal>
</project>
1.3 +2 -2 maven/src/plugins-build/clean/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/clean/project.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- project.xml 9 Apr 2003 01:06:44 -0000 1.2
+++ project.xml 3 Jun 2003 06:36:56 -0000 1.3
@@ -5,9 +5,9 @@
<pomVersion>3</pomVersion>
<id>maven-clean-plugin</id>
<name>Maven Clean Plug-in</name>
- <currentVersion>1.0</currentVersion>
+ <currentVersion>1.1-SNAPSHOT</currentVersion>
<description/>
- <shortDescription>Java Project Management Tools</shortDescription>
+ <shortDescription>Clean plugin for Maven</shortDescription>
<url>http://maven.apache.org/reference/plugins/clean/</url>
<siteDirectory>/www/maven.apache.org/reference/plugins/clean/</siteDirectory>
<repository>
1.2 +21 -19 maven/src/plugins-build/clean/xdocs/goals.xml
Index: goals.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/clean/xdocs/goals.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- goals.xml 5 Apr 2003 08:03:17 -0000 1.1
+++ goals.xml 3 Jun 2003 06:36:56 -0000 1.2
@@ -7,23 +7,25 @@
</properties>
<body>
- <section name="Goals">
- <table>
- <tr><th>Goal</th><th>Description</th></tr>
- <tr>
- <td>clean</td>
- <td>
- This goal is a shortcut to the <code>clean:clean</code> goal
- </td>
- </tr>
- <tr>
- <td>clean:clean</td>
- <td>
- Removes the <a href="properties.html">maven.build.dir</a> and
- <a href="properties.html">maven.test.reportsDirectory</a> directories
- </td>
- </tr>
- </table>
- </section>
- </body>
+ <goals>
+ <goal>
+ <name>clean</name>
+ <description>
+ This goal is a shortcut to the <code>clean:clean</code> goal.
+ </description>
+ </goal>
+ <goal>
+ <name>clean:clean</name>
+ <description>Removes ${maven.build.dir} and
${basedir}/velocity.log.</description>
+ </goal>
+ <goal>
+ <name>clean:classes</name>
+ <description>Removes ${maven.build.dest} and ${maven.test.dest}
directories.</description>
+ </goal>
+ <goal>
+ <name>clean:docs</name>
+ <description>Removes the ${maven.gen.docs} and ${maven.docs.dest}
directories.</description>
+ </goal>
+ </goals>
+ </body>
</document>
1.3 +7 -3 maven/src/plugins-build/clean/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/clean/xdocs/changes.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- changes.xml 7 Apr 2003 12:48:18 -0000 1.2
+++ changes.xml 3 Jun 2003 06:36:56 -0000 1.3
@@ -6,13 +6,17 @@
</properties>
<body>
-
- <release version="1.0" date="in cvs">
+ <release version="1.1" date="in cvs">
+ <action dev="dion" type="fix" due-to="gabriel">
+ Apply docs patch, fix bad code in the clean:classes and clean:docs goals
+ </action>
+ </release>
+ <release version="1.0" date="Unknown">
<action dev="evenisse" type="add">
Add clean:classes and clean:docs goals.
</action>
<action dev="evenisse" type="add">
- Initial plugin created. Goals are move from java plugin.
+ Initial plugin created. Goals are moved from java plugin.
</action>
</release>
1.2 +1 -1 maven/src/plugins-build/clean/xdocs/index.xml
Index: index.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/clean/xdocs/index.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- index.xml 5 Apr 2003 08:03:17 -0000 1.1
+++ index.xml 3 Jun 2003 06:36:56 -0000 1.2
@@ -9,7 +9,7 @@
<body>
<section name="Clean Java Plug-in">
<p>
- This plug-in provides functionality for cleaning output directory.
+ This plug-in provides functionality for cleaning output directories.
</p>
</section>
</body>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]