You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jk...@apache.org on 2010/03/12 10:37:52 UTC

svn commit: r922191 - /ant/core/trunk/build.xml

Author: jkf
Date: Fri Mar 12 09:37:52 2010
New Revision: 922191

URL: http://svn.apache.org/viewvc?rev=922191&view=rev
Log:
Inspired on one of the patches on debian ant
Minimum java version 1.8+ is 1.4.

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=922191&r1=922190&r2=922191&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Fri Mar 12 09:37:52 2010
@@ -102,8 +102,8 @@
   <property name="chmod.maxparallel" value="250"/>
   <property name="deprecation" value="false"/>
   <property name="optimize" value="true"/>
-  <property name="javac.target" value="1.2"/>
-  <property name="javac.source" value="1.2"/>
+  <property name="javac.target" value="1.4"/>
+  <property name="javac.source" value="1.4"/>
   <property name="junit.fork" value="false"/>
   <property name="junit.filtertrace" value="off"/>
   <property name="junit.summary" value="no"/>