You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rw...@apache.org on 2003/01/06 13:54:06 UTC

cvs commit: jakarta-commons/collections build.xml

rwaldhoff    2003/01/06 04:54:06

  Modified:    collections build.xml
  Log:
  expose ${javac.debug},  ${javac.deprecation} and ${javac.optimize} properties
  
  Revision  Changes    Path
  1.34      +12 -7     jakarta-commons/collections/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/build.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- build.xml	21 Oct 2002 00:33:59 -0000	1.33
  +++ build.xml	6 Jan 2003 12:54:05 -0000	1.34
  @@ -80,6 +80,11 @@
         <property name="dest.src.tar.gz"    value="${dest}/${src.name}.tar.gz"/>
         <property name="dest.src.zip" value="${dest}/${src.name}.zip"/>
         
  +
  +      <property name="javac.debug" value="true"/>
  +      <property name="javac.deprecation" value="true"/>
  +      <property name="javac.optimize" value="true"/>
  +
         <patternset id="patternset-exclude-distros">
           <exclude name="**/${bin.name}.tar.gz"/>
           <exclude name="**/${bin.name}.zip"/>
  @@ -201,9 +206,9 @@
         <javac destdir="${dest.classes}"
                srcdir="${source.src.java}"
                classpath="${classpath}"
  -             debug="false"
  -             deprecation="true"
  -             optimize="true"/>
  +             debug="${javac.debug}"
  +             deprecation="${javac.deprecation}"
  +             optimize="${javac.optimize}"/>
      </target>
   
      <target name="build-test" depends="init,build-java" if="available-src-test">
  @@ -211,9 +216,9 @@
         <javac destdir="${dest.classes}"
                srcdir="${source.src.test}"
                classpath="${classpath}"
  -             debug="false"
  -             deprecation="true"
  -             optimize="true"/>
  +             debug="${javac.debug}"
  +             deprecation="${javac.deprecation}"
  +             optimize="${javac.optimize}"/>
      </target>
   
      <!-- ######################################################### -->
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>