You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by je...@apache.org on 2010/11/12 14:10:00 UTC

svn commit: r1034389 - /xmlgraphics/commons/trunk/build.xml

Author: jeremias
Date: Fri Nov 12 13:10:00 2010
New Revision: 1034389

URL: http://svn.apache.org/viewvc?rev=1034389&view=rev
Log:
XGC now needs J2SE 1.5.

Modified:
    xmlgraphics/commons/trunk/build.xml

Modified: xmlgraphics/commons/trunk/build.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/build.xml?rev=1034389&r1=1034388&r2=1034389&view=diff
==============================================================================
--- xmlgraphics/commons/trunk/build.xml (original)
+++ xmlgraphics/commons/trunk/build.xml Fri Nov 12 13:10:00 2010
@@ -30,8 +30,8 @@
   <property name="javac.debug" value="on"/>
   <property name="javac.optimize" value="off"/>
   <property name="javac.deprecation" value="on"/>
-  <property name="javac.source" value="1.4"/>
-  <property name="javac.target" value="1.4"/>
+  <property name="javac.source" value="1.5"/>
+  <property name="javac.target" value="1.5"/>
   <property name="javac.fork" value="no"/>
 
   <property name="junit.fork" value="on"/>
@@ -123,8 +123,8 @@
   <target name="init" depends="info, init-avail"/>
 
   <target name="init-avail">
-    <available property="jdk14.present" classname="java.lang.CharSequence"/>
-    <fail message="${Name} requires at least Java 1.4" unless="jdk14.present"/>
+    <available property="jdk15.present" classname="java.lang.StringBuilder"/>
+    <fail message="${Name} requires at least Java 1.5" unless="jdk15.present"/>
     
     <condition property="internal-codecs.eff.disabled">
       <equals arg1="${internal-codecs.disabled}" arg2="true"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org