You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2008/04/23 19:02:04 UTC

svn commit: r650939 - /commons/sandbox/me/trunk/build.xml

Author: nick
Date: Wed Apr 23 10:01:49 2008
New Revision: 650939

URL: http://svn.apache.org/viewvc?rev=650939&view=rev
Log:
A few tweaks to improve the build

Modified:
    commons/sandbox/me/trunk/build.xml

Modified: commons/sandbox/me/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/me/trunk/build.xml?rev=650939&r1=650938&r2=650939&view=diff
==============================================================================
--- commons/sandbox/me/trunk/build.xml (original)
+++ commons/sandbox/me/trunk/build.xml Wed Apr 23 10:01:49 2008
@@ -255,7 +255,7 @@
 			source="${main.jdk.version.source}"
 			debug="yes"
 		>
-			<classpath refid="compile.classpath"/>
+			<bootclasspath refid="compile.classpath"/>
 		</javac>
 	</target>
 
@@ -263,12 +263,12 @@
 	<target name="compile-test" depends="init,compile-midp">
 		<javac
 			srcdir="test-src" 
-			destdir="build/ant-classes/"
+			destdir="build/tests/"
 			target="${support.jdk.version.class}"
 			source="${support.jdk.version.source}"
 			debug="yes"
 		>
-			<classpath refid="compile.classpath"/>
+			<classpath refid="run.classpath"/>
 		</javac>
 	</target>
 
@@ -281,6 +281,7 @@
 			<jvmarg value="-Djava.library.path=${wtk.home}/bin" />
 			<jvmarg value="-Dkvem.home=${wtk.home}" />
 			<classpath refid="run.classpath"/>
+			<classpath path="build/tests/"/>
 			<formatter type="brief" usefile="false" />
 			<batchtest todir="build/tests">
 				<fileset dir="test-src/">