You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2004/06/29 14:45:58 UTC

cvs commit: maven-plugins/clean project.xml

dion        2004/06/29 05:45:58

  Modified:    clean/xdocs changes.xml
               clean/src/plugin-test maven.xml
               clean    project.xml
  Log:
  Use assert taglib in plugin test
  
  Revision  Changes    Path
  1.11      +3 -0      maven-plugins/clean/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/clean/xdocs/changes.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- changes.xml	19 Jun 2004 01:55:06 -0000	1.10
  +++ changes.xml	29 Jun 2004 12:45:57 -0000	1.11
  @@ -24,6 +24,9 @@
       <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
     </properties>
     <body>
  +    <release version="1.4-SNAPSHOT" date="in CVS">
  +      <action dev="dion" type="update">Use assert taglib in plugin test.</action>
  +    </release>
       <release version="1.3" date="2004-06-19">
         <action dev="brett" type="fix" issue="MPCLEAN-1">Also clean maven.build.dest in case it is moved outside maven.build.dir</action>
       </release>
  
  
  
  1.3       +4 -6      maven-plugins/clean/src/plugin-test/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/clean/src/plugin-test/maven.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- maven.xml	4 Mar 2004 18:01:50 -0000	1.2
  +++ maven.xml	29 Jun 2004 12:45:58 -0000	1.3
  @@ -15,7 +15,9 @@
    * limitations under the License.
    */
    -->
  -<project xmlns:j="jelly:core" xmlns:u="jelly:util">
  +<project xmlns:assert="assert"
  +         xmlns:j="jelly:core" 
  +         xmlns:u="jelly:util">
   
     <goal name="testPlugin" prereqs="test-clean">
     </goal>
  @@ -24,10 +26,6 @@
       <mkdir dir="${maven.build.dir}"/>
       <attainGoal name="clean"/>
   
  -    <u:file var="target" name="${maven.build.dir}"/>
  -    <j:if test="${(target.exists())}">
  -      <fail>maven.build.dir was not deleted</fail>
  -    </j:if>
  -
  +    <assert:assertFileNotFound file="${maven.build.dir}"/>
     </goal>
   </project>
  
  
  
  1.19      +1 -1      maven-plugins/clean/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/clean/project.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- project.xml	25 Jun 2004 15:24:27 -0000	1.18
  +++ project.xml	29 Jun 2004 12:45:58 -0000	1.19
  @@ -23,7 +23,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-clean-plugin</id>
     <name>Maven Clean Plugin</name>
  -  <currentVersion>1.3</currentVersion>
  +  <currentVersion>1.4-SNAPSHOT</currentVersion>
     <description/>
     <shortDescription>Clean plugin for Maven</shortDescription>
     <url>http://maven.apache.org/reference/plugins/clean/</url>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org