You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2014/01/30 20:59:41 UTC

svn commit: r1562936 - /commons/proper/dbcp/trunk/build.xml

Author: sebb
Date: Thu Jan 30 19:59:40 2014
New Revision: 1562936

URL: http://svn.apache.org/r1562936
Log:
Deprecations

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

Modified: commons/proper/dbcp/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/build.xml?rev=1562936&r1=1562935&r2=1562936&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/build.xml (original)
+++ commons/proper/dbcp/trunk/build.xml Thu Jan 30 19:59:40 2014
@@ -157,12 +157,15 @@
       <javac destdir="${build.classes.dir}"
              srcdir="${src.java.dir}"
              classpath="${classpath}"
+             includeantruntime="false"
              debug="${javac.debug}"
              deprecation="${javac.deprecation}"
              optimize="${javac.optimize}"
              source="${javac.source}">
       </javac>
-   	  <copydir dest="${build.classes.dir}" src="${src.resource.dir}"/>
+   	  <copy todir="${build.classes.dir}" >
+   	  	<fileset dir="${src.resource.dir}"/>
+   	  </copy>
    </target>
    
    <target name="compile-test" depends="compile">
@@ -170,6 +173,7 @@
       <javac destdir="${build.test-classes.dir}"
              srcdir="${src.test.dir}"
              debug="${javac.debug}"
+             includeantruntime="false"
              deprecation="${javac.deprecation}"
              optimize="${javac.optimize}"
              source="${javac.source}">