You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ay...@apache.org on 2007/05/25 14:42:33 UTC

svn commit: r541625 - /harmony/enhanced/jdktools/trunk/modules/jpda/build.xml

Author: ayza
Date: Fri May 25 05:42:32 2007
New Revision: 541625

URL: http://svn.apache.org/viewvc?view=rev&rev=541625
Log:
Adding class library jars to classpath while building JPDA

Modified:
    harmony/enhanced/jdktools/trunk/modules/jpda/build.xml

Modified: harmony/enhanced/jdktools/trunk/modules/jpda/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/jdktools/trunk/modules/jpda/build.xml?view=diff&rev=541625&r1=541624&r2=541625
==============================================================================
--- harmony/enhanced/jdktools/trunk/modules/jpda/build.xml (original)
+++ harmony/enhanced/jdktools/trunk/modules/jpda/build.xml Fri May 25 05:42:32 2007
@@ -76,6 +76,14 @@
                target="${hy.javac.target}"
                debug="${hy.javac.debug}">
 
+            <!-- HDK class library -->
+            <classpath>
+                <fileset dir="${hy.hdk}/jdk/jre/lib/boot">
+                    <include name="**/*.jar" />
+                    <exclude name="**/*-src.jar" />
+                </fileset>
+            </classpath>
+
             <classpath>
                 <pathelement path="${jdt.jdi.jar}"/>
                 <pathelement path="${jdt.jdimodel.jar}"/>
@@ -182,6 +190,14 @@
             target="${hy.javac.target}"
             debug="on">
 
+            <!-- HDK class library -->
+            <classpath>
+                <fileset dir="${hy.hdk}/jdk/jre/lib/boot">
+                    <include name="**/*.jar" />
+                    <exclude name="**/*-src.jar" />
+                </fileset>
+            </classpath>
+            
             <classpath>
                 <pathelement path="${tests.build.output}/classes"/>
                 <pathelement path="${junit.jar}"/>