Be more explicit about classpath.  In preparation for setting:

  includeantruntime="false"

in hy.javac task in common_resources/make/properties.xml.

It would be helpful is someone using eclipse could test this as these
variables apparently aren't always set by IDEs.


git-svn-id: https://svn.apache.org/repos/asf/harmony/enhanced/jdktools/trunk@925933 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/modules/jdktools/build.xml b/modules/jdktools/build.xml
index 12959aa..20cd190 100644
--- a/modules/jdktools/build.xml
+++ b/modules/jdktools/build.xml
@@ -91,8 +91,8 @@
         <mkdir dir="bin/main" />
 
         <hy.javac sourcepath=""
-               srcdir="src/main/java"
-               destdir="bin/main">
+                  srcdir="src/main/java"
+                  destdir="bin/main">
 
             <bootclasspath>
                 <fileset dir="${hy.hdk}/jdk/jre/lib/boot">
@@ -106,6 +106,9 @@
             <classpath>
                 <pathelement path="${jdt.jdi.jar}"/>
                 <pathelement path="${ecj.jar}" />
+                <pathelement path="${ant.core.lib}" />
+                <pathelement path="${ant.library.dir}/ant-launcher.jar" />
+                <pathelement path="${ant.library.dir}/ant-nodeps.jar" />
             </classpath>
         </hy.javac>
     </target>