Browse Source

make javac independent of CLASPATH

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@789604 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 16 years ago
parent
commit
8b05902d4b
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      build.xml

+ 3
- 1
build.xml View File

@@ -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}"


Loading…
Cancel
Save