You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/09/25 12:07:37 UTC

svn commit: r818806 - /commons/sandbox/runtime/trunk/build.xml

Author: mturk
Date: Fri Sep 25 10:07:37 2009
New Revision: 818806

URL: http://svn.apache.org/viewvc?rev=818806&view=rev
Log:
fail doesn't work on older ant version which we are suppose to check

Modified:
    commons/sandbox/runtime/trunk/build.xml

Modified: commons/sandbox/runtime/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/build.xml?rev=818806&r1=818805&r2=818806&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/build.xml (original)
+++ commons/sandbox/runtime/trunk/build.xml Fri Sep 25 10:07:37 2009
@@ -91,14 +91,6 @@
         <echo message="os.name    = ${os.name}"/>
         <echo message="os.arch    = ${os.arch}"/>
         <echo message="os.version = ${os.version}"/>
-        <fail message="Unsupported (${ant.version}) Ant version.
- Minimum required version is 1.6.3">
-            <condition>
-                <not>
-                    <antversion atleast="1.6.3"/>
-                </not>
-            </condition>
-        </fail>
     </target>
 
     <target name="prepare" depends="env">