You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2009/06/30 10:13:55 UTC

svn commit: r789604 - /ant/core/trunk/build.xml

Author: bodewig
Date: Tue Jun 30 08:13:54 2009
New Revision: 789604

URL: http://svn.apache.org/viewvc?rev=789604&view=rev
Log:
make javac independent of CLASPATH

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=789604&r1=789603&r2=789604&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Tue Jun 30 08:13:54 2009
@@ -119,7 +119,7 @@
        ===================================================================
   -->
   <path id="classpath">
-    <fileset dir="lib/optional" includes="junit*.jar"/>
+    <fileset dir="lib/optional" includes="*.jar"/>
   </path>
 
   <path id="tests-classpath">
@@ -547,6 +547,7 @@
     <mkdir dir="${build.lib}"/>
 
     <javac srcdir="${java.dir}"
+      includeantruntime="false"
       destdir="${build.classes}"
       debug="${debug}"
       deprecation="${deprecation}"
@@ -1440,6 +1441,7 @@
     <mkdir dir="${build.tests}"/>
 
     <javac srcdir="${src.junit}"
+      includeantruntime="false"
       destdir="${build.tests}"
       debug="${debug}"
       target="${javac.target}"