1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: specifying the classpath in the build.xml file for the Debian
build
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2025-01-22
@@ -35,13 +35,13 @@
<path id="project.classpath">
<pathelement location="${classes.dir}"/>
- <pathelement location="${lib.dir}/junit.jar"/>
+ <pathelement location="/usr/share/java/junit.jar"/>
</path>
<path id="project.boot.classpath">
<path refid="project.classpath"/>
- <pathelement location="${resgen.jar.file}"/>
- <pathelement location="${xom.jar.file}"/>
+ <pathelement location="/usr/share/java/eigenbase-xom.jar"/>
+ <pathelement location="/usr/share/java/xercesImpl.jar"/>
</path>
<taskdef name="xomgen" classname="org.eigenbase.xom.XOMGenTask">
|