[jboss-cvs] JBossAS SVN: r62787 - trunk/build.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu May 3 13:08:00 EDT 2007
Author: scott.stark at jboss.org
Date: 2007-05-03 13:08:00 -0400 (Thu, 03 May 2007)
New Revision: 62787
Modified:
trunk/build/build.xml
Log:
Execute the testsuite/build-thirdparty.xml as part of createthirdparty
Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml 2007-05-03 16:52:27 UTC (rev 62786)
+++ trunk/build/build.xml 2007-05-03 17:08:00 UTC (rev 62787)
@@ -895,6 +895,7 @@
<target name="createthirdparty" unless="inhibit.downloads"
depends="check.inhibit.downloads, set.proxy">
<ant antfile="build-thirdparty.xml" target="generate-lib-file"/>
+ <ant dir="../testsuite" antfile="build-thirdparty.xml" target="generate-lib-file"/>
</target>
<!-- check if thirdparty libraries are to be downloaded -->
@@ -902,8 +903,10 @@
<condition property="inhibit.downloads">
<or>
<uptodate property="dependencies.current"
- srcfile="build-thirdparty.xml"
- targetfile="../thirdparty/libraries.ent"/>
+ targetfile="../thirdparty/libraries.ent">
+ <srcfiles dir= "." includes="build-thirdparty.xml"/>
+ <srcfiles dir= "../testsuite" includes="build-thirdparty.xml"/>
+ </uptodate>
<istrue value="${nodownload}"/>
</or>
</condition>
More information about the jboss-cvs-commits
mailing list