You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2008/11/29 22:20:57 UTC

svn commit: r721721 - /maven/components/trunk/build.xml

Author: jvanzyl
Date: Sat Nov 29 13:20:57 2008
New Revision: 721721

URL: http://svn.apache.org/viewvc?rev=721721&view=rev
Log:
o not going to be running the ITs from the bootstrap itself, there will be one standard way to run the ITs

Modified:
    maven/components/trunk/build.xml

Modified: maven/components/trunk/build.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/build.xml?rev=721721&r1=721720&r2=721721&view=diff
==============================================================================
--- maven/components/trunk/build.xml (original)
+++ maven/components/trunk/build.xml Sat Nov 29 13:20:57 2008
@@ -214,57 +214,6 @@
     </chmod>
   </target>
   
-  <target name="its-setup">
-    <condition property="its.win32">
-      <os family="windows"/>
-    </condition>
-    <condition property="its.unix">
-      <not>
-        <os family="windows"/>
-      </not>
-    </condition>
-  </target>
-  
-  <target name="its-win32" if="its.win32">
-    <echo>Retrieving integration tests</echo>
-    <exec dir="${basedir}/maven-integration-tests" executable="cmd">
-      <arg value="/c"/>
-      <arg value="${maven.home}\bin\mvn.bat"/>
-      <arg value="initialize"/>
-    </exec>
-    
-    <echo>Running integration tests</echo>
-    <!-- Hard-coding to /tmp/ to avoid long path names that will make windows scream. -->
-    <exec failonerror="true" dir="/tmp/maven-integration-tests-${it.workdir.version}" executable="cmd">
-      <arg value="/c"/>
-      <arg value="${maven.home}\bin\mvn.bat"/>
-      <arg value="-Prun-its"/>
-      <arg value="clean"/>
-      <arg value="install"/>
-    </exec>
-  </target>
-
-  <target name="its-unix" if="its.unix">
-    <echo>Retrieving integration tests</echo>
-    <exec dir="${basedir}/maven-integration-tests" executable="${maven.home}/bin/mvn">
-      <arg value="initialize"/>
-    </exec>
-    
-    <echo>Running integration tests</echo>
-    <!-- Hard-coding to /tmp/ to avoid long path names that will make windows scream. -->
-    <exec failonerror="true" dir="/tmp/maven-integration-tests-${it.workdir.version}" executable="${maven.home}/bin/mvn">
-      <arg value="-Prun-its"/>
-      <arg value="clean"/>
-      <arg value="install"/>
-    </exec>
-  </target>
-
-  <target name="run-its" depends="init,its-setup,its-win32,its-unix">
-    <echo>Integration-test results should be displayed above.</echo>
-  </target>
-  
   <target name="all" depends="clean-bootstrap,init,extract-assembly"/>
-
-  <target name="with-its" depends="all,run-its"/>
   
 </project>