You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/04/09 15:20:43 UTC

svn commit: r392719 - /maven/maven-1/plugins/trunk/ant/src/plugin-test/maven.xml

Author: aheritier
Date: Sun Apr  9 06:20:41 2006
New Revision: 392719

URL: http://svn.apache.org/viewcvs?rev=392719&view=rev
Log:
clean tests projects only before the tests.

Modified:
    maven/maven-1/plugins/trunk/ant/src/plugin-test/maven.xml

Modified: maven/maven-1/plugins/trunk/ant/src/plugin-test/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ant/src/plugin-test/maven.xml?rev=392719&r1=392718&r2=392719&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/ant/src/plugin-test/maven.xml (original)
+++ maven/maven-1/plugins/trunk/ant/src/plugin-test/maven.xml Sun Apr  9 06:20:41 2006
@@ -16,11 +16,8 @@
  */
  -->
 <project xmlns:util="jelly:util" xmlns:j="jelly:core" xmlns:ant="jelly:ant" xmlns:maven="jelly:maven" xmlns:u="jelly:util" xmlns:assert="assert" xmlns:x="jelly:xml">
-  <goal name="testPlugin">
-    <attainGoal name="clean"/>
-    <attainGoal name="test-ant"/>
-  </goal>
-  <goal name="test-ant">
+  <goal name="testPlugin" prereqs="test-ant"/>
+  <goal name="test-ant" prereqs="clean">
     <delete file="${basedir}/build.xml" failonerror="false"/>
     <attainGoal name="ant"/>
     <assert:assertFileExists file="${basedir}/build.xml"/>