[jboss-cvs] JBossAS SVN: r68061 - trunk/tools/etc/buildmagic.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Dec 8 00:10:49 EST 2007


Author: scott.stark at jboss.org
Date: 2007-12-08 00:10:48 -0500 (Sat, 08 Dec 2007)
New Revision: 68061

Modified:
   trunk/tools/etc/buildmagic/build-common.xml
Log:
Add ant 1.7 t the build-common.xml check


Modified: trunk/tools/etc/buildmagic/build-common.xml
===================================================================
--- trunk/tools/etc/buildmagic/build-common.xml	2007-12-08 04:18:25 UTC (rev 68060)
+++ trunk/tools/etc/buildmagic/build-common.xml	2007-12-08 05:10:48 UTC (rev 68061)
@@ -2,6 +2,7 @@
 
   <!-- Make sure we have the right version of Ant -->
   <property name="buildmagic.ant16.baseversion" value="1.6"/>
+  <property name="buildmagic.ant17.baseversion" value="1.7"/>
 
   <!--
      | Add new conditions for other supported Ant versions when they
@@ -10,8 +11,10 @@
 
   <condition property="buildmagic.ant.compatible">
     <or>
-      <contains string="${ant.version}" 
+      <contains string="${ant.version}"
 	        substring="Ant version ${buildmagic.ant16.baseversion}"/>
+      <contains string="${ant.version}"
+	        substring="Ant version ${buildmagic.ant17.baseversion}"/>
     </or>
   </condition>
 




More information about the jboss-cvs-commits mailing list