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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Author: <gregor+debian@comodo.priv.at>
Description: Remove bootclasspath from build.xml
--- a/build.xml
+++ b/build.xml
@@ -113,8 +113,8 @@
optimize ="${build.compile.optimize}"
source ="${build.compile.source}"
target ="${build.compile.target}"
- verbose ="${build.compile.verbose}"
- bootclasspath="${build.boot.classpath}" />
+ verbose ="${build.compile.verbose}" />
+ <!-- bootclasspath="${build.boot.classpath}" /> -->
<copy toDir="${build.core.dir}" >
<fileset dir="${src.core.dir}"
@@ -141,8 +141,8 @@
source ="${build.compile.source}"
target ="${build.compile.target}"
verbose ="${build.compile.verbose}"
- bootclasspath="${build.boot.classpath}"
classpathref ="classpath.demo" />
+ <!-- bootclasspath="${build.boot.classpath}" -->
</target>
<!-- ***************************************************************** -->
@@ -163,8 +163,8 @@
source ="${build.compile.source}"
target ="${build.compile.target}"
verbose ="${build.compile.verbose}"
- bootclasspath="${build.boot.classpath}"
classpathref ="classpath.tests" />
+ <!-- bootclasspath="${build.boot.classpath}" -->
</target>
@@ -423,4 +423,4 @@
</target>
-</project>
\ No newline at end of file
+</project>
|