You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by sg...@apache.org on 2008/12/30 16:03:43 UTC

svn commit: r730142 - /commons/proper/exec/trunk/build.xml

Author: sgoeschl
Date: Tue Dec 30 07:03:43 2008
New Revision: 730142

URL: http://svn.apache.org/viewvc?rev=730142&view=rev
Log:
Added 1.3 source to the <javac> target to get rid of an Ant warning under JDK 1.5

Modified:
    commons/proper/exec/trunk/build.xml

Modified: commons/proper/exec/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/build.xml?rev=730142&r1=730141&r2=730142&view=diff
==============================================================================
--- commons/proper/exec/trunk/build.xml (original)
+++ commons/proper/exec/trunk/build.xml Tue Dec 30 07:03:43 2008
@@ -38,7 +38,7 @@
 
   <target name="compile" description="Compile the code">
     <mkdir dir="${maven.build.output}"/>
-    <javac destdir="${maven.build.output}" excludes="**/package.html" debug="true" deprecation="true" optimize="false" target="1.3">
+    <javac destdir="${maven.build.output}" excludes="**/package.html" debug="true" deprecation="true" optimize="false" source="1.3" target="1.3">
       <src>
         <pathelement location="${basedir}/src/main/java"/>
       </src>
@@ -51,7 +51,7 @@
 
   <target name="compile-tests" depends="junit-present, compile" description="Compile the test code" if="junit.present">
     <mkdir dir="${maven.test.output}"/>
-    <javac destdir="${maven.test.output}" excludes="**/package.html" debug="true" deprecation="true" optimize="false" target="1.3">
+    <javac destdir="${maven.test.output}" excludes="**/package.html" debug="true" deprecation="true" optimize="false" source="1.3" target="1.3">
       <src>
         <pathelement location="${basedir}/src/test/java"/>
       </src>