details:   https://code.openbravo.com/erp/devel/pi/rev/2ec0366c9fe2
changeset: 33922:2ec0366c9fe2
user:      Asier Lostalé <asier.lostale <at> openbravo.com>
date:      Tue May 08 08:56:25 2018 +0200
summary:   fixes 38500: raise minimum required ant version to 1.9.2

  Check on init task current version is at least 1.9.2

diffstat:

 build.xml |  9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diffs (19 lines):

diff -r a1b63a73a71d -r 2ec0366c9fe2 build.xml
--- a/build.xml Fri May 04 11:31:32 2018 +0530
+++ b/build.xml Tue May 08 08:56:25 2018 +0200
@@ -353,6 +353,15 @@
         <equals arg1="${ant.java.version}" arg2="1.6"/>
       </condition>
     </fail>
+    <antversion property="min.ant.version" atleast="1.9.2" />
+    <antversion property="actual.ant.version" />
+    <fail message="Unsupported ant version ${actual.ant.version}. Minimum 
required is 1.9.2.">
+      <condition>
+        <not>
+          <isset property="min.ant.version"/>
+        </not>
+      </condition>
+    </fail>
   </target>
 
   <target name="compile.complete" depends="init, core.lib, wad.lib, trl.lib">

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Openbravo-commits mailing list
Openbravo-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to