[jboss-cvs] JBossAS SVN: r70837 - trunk/testsuite.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 13 15:27:50 EDT 2008


Author: rrajesh
Date: 2008-03-13 15:27:50 -0400 (Thu, 13 Mar 2008)
New Revision: 70837

Modified:
   trunk/testsuite/build.xml
Log:
Sync up the testsuite thirdparty mechanism with maven

Modified: trunk/testsuite/build.xml
===================================================================
--- trunk/testsuite/build.xml	2008-03-13 19:04:33 UTC (rev 70836)
+++ trunk/testsuite/build.xml	2008-03-13 19:27:50 UTC (rev 70837)
@@ -356,7 +356,12 @@
    <!-- the build                                                 -->
    <target name="createthirdparty" unless="inhibit.downloads"
       depends="check.inhibit.downloads, set.proxy">
-      <ant antfile="build-thirdparty.xml" target="generate-lib-file"/>
+      <condition property="mvn.cmd" value="mvn.bat" else="mvn">
+         <os family="windows"/>
+      </condition>
+      <exec executable="${mvn.cmd}" dir="../thirdparty">
+        <arg line="package"/>
+      </exec>
    </target>
 
    <!-- check if thirdparty libraries are to be downloaded -->
@@ -364,7 +369,7 @@
       <condition property="inhibit.downloads">
          <or>
             <uptodate property="dependencies.current"
-	          srcfile="build-thirdparty.xml"
+	          srcfile="../pom.xml"
                targetfile="../thirdparty/testsuite-libraries.ent"/>
             <istrue value="${nodownload}"/>
          </or>




More information about the jboss-cvs-commits mailing list