You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/12/30 14:59:19 UTC

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

Author: ggregory
Date: Mon Dec 30 13:59:19 2013
New Revision: 1554224

URL: http://svn.apache.org/r1554224
Log:
Prop names match Maven.

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=1554224&r1=1554223&r2=1554224&view=diff
==============================================================================
--- commons/proper/exec/trunk/build.xml (original)
+++ commons/proper/exec/trunk/build.xml Mon Dec 30 13:59:19 2013
@@ -33,8 +33,8 @@
   <!-- JUnit version should agree with the version in pom.xml -->
   <property name="maven.junit.jar" value="${maven.repo.local}/junit/junit/3.8.1/junit-3.8.1.jar"/>
   <!-- These must agree with the versions in pom.xml -->
-  <property name="maven.compile.source" value="1.3"/>
-  <property name="maven.compile.target" value="1.3"/>
+  <property name="maven.compiler.source" value="1.3"/>
+  <property name="maven.compiler.target" value="1.3"/>
 
   <path id="junit">
       <pathelement location="${maven.junit.jar}"/>
@@ -48,7 +48,7 @@
     <mkdir dir="${maven.build.output}"/>
     <javac destdir="${maven.build.output}" excludes="**/package.html" debug="true" deprecation="true" optimize="false"
         includeAntRuntime="false"
-        source="${maven.compile.source}" target="${maven.compile.target}">
+        source="${maven.compiler.source}" target="${maven.compiler.target}">
       <src>
         <pathelement location="${basedir}/src/main/java"/>
       </src>
@@ -63,7 +63,7 @@
     <mkdir dir="${maven.test.output}"/>
     <javac destdir="${maven.test.output}" excludes="**/package.html" debug="true" deprecation="true" optimize="false" 
         includeAntRuntime="false"
-        source="${maven.compile.source}" target="${maven.compile.target}">
+        source="${maven.compiler.source}" target="${maven.compiler.target}">
       <src>
         <pathelement location="${basedir}/src/test/java"/>
       </src>