You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by pe...@apache.org on 2004/05/17 15:22:12 UTC

cvs commit: ant build.xml

peterreilly    2004/05/17 06:22:12

  Modified:    .        build.xml
  Log:
  Permit building under JDK 1.5
  PR: 28996
  Obtained from: Jesse Glick
  
  Revision  Changes    Path
  1.419     +5 -2      ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ant/build.xml,v
  retrieving revision 1.418
  retrieving revision 1.419
  diff -u -r1.418 -r1.419
  --- build.xml	27 Apr 2004 07:44:46 -0000	1.418
  +++ build.xml	17 May 2004 13:22:11 -0000	1.419
  @@ -48,7 +48,8 @@
     <property name="chmod.maxparallel" value="250"/>
     <property name="deprecation" value="false"/>
     <property name="optimize" value="true"/>
  -  <property name="javac.target" value="1.1"/>
  +  <property name="javac.target" value="1.2"/>
  +  <property name="javac.source" value="1.2"/>
     <property name="junit.fork" value="false"/>
     <property name="junit.filtertrace" value="off"/>
     <property name="junit.summary" value="no"/>
  @@ -604,6 +605,7 @@
              debug="${debug}"
              deprecation="${deprecation}"
              target="${javac.target}"
  +           source="${javac.source}"
              optimize="${optimize}" >
         <classpath refid="classpath"/>
   
  @@ -1354,6 +1356,7 @@
              destdir="${build.tests}"
              debug="${debug}"
              target="${javac.target}"
  +           source="${javac.source}"
              deprecation="${deprecation}" >
         <classpath refid="tests-classpath"/>
   
  @@ -1610,4 +1613,4 @@
             description="--> creates a minimum distribution in ./dist"
             depends="dist-lite"/>
   
  -</project>
  \ No newline at end of file
  +</project>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org