[jboss-cvs] JBossAS SVN: r84739 - in branches/Branch_5_x: tools/lib and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Feb 25 10:30:13 EST 2009


Author: pgier
Date: 2009-02-25 10:30:12 -0500 (Wed, 25 Feb 2009)
New Revision: 84739

Added:
   branches/Branch_5_x/tools/lib/ant-contrib-1.0b3.jar
Modified:
   branches/Branch_5_x/build/build.xml
Log:


Modified: branches/Branch_5_x/build/build.xml
===================================================================
--- branches/Branch_5_x/build/build.xml	2009-02-25 15:29:07 UTC (rev 84738)
+++ branches/Branch_5_x/build/build.xml	2009-02-25 15:30:12 UTC (rev 84739)
@@ -30,6 +30,13 @@
   &buildmagic;
 
 
+  <!-- Add the antcontrib tasks -->
+  <taskdef resource="net/sf/antcontrib/antcontrib.properties">
+    <classpath>
+      <pathelement location="${basedir}/../tools/lib/ant-contrib-1.0b3.jar"/>
+    </classpath>
+  </taskdef>
+  
   <!-- ================================================================== -->
   <!-- Initialization                                                     -->
   <!-- ================================================================== -->
@@ -979,7 +986,7 @@
 
   <!-- Clean up all build output -->
   <target name="clean" description="Cleans up most generated files."
-          depends="checkthirdparty, createthirdparty, maven-clean, _buildmagic:clean, 
+          depends="checkthirdparty, maven-clean, _buildmagic:clean, 
                    modules-clean">
   </target>
 
@@ -1040,8 +1047,14 @@
   </target>
   
   <target name="checkthirdparty">
-    <available property="inhibit.downloads"
-               file="${basedir}/../thirdparty/libraries.ent"/>
+    <if>
+      <not>
+        <available file="${basedir}/../thirdparty/libraries.ent"/>
+      </not>
+      <then>
+        <antcall target="createthirdparty"/>
+      </then>
+    </if>
   </target>
   
    <!-- Call maven to create the thirdparty folder from artifacts in the maven repository -->

Added: branches/Branch_5_x/tools/lib/ant-contrib-1.0b3.jar
===================================================================
(Binary files differ)


Property changes on: branches/Branch_5_x/tools/lib/ant-contrib-1.0b3.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream




More information about the jboss-cvs-commits mailing list