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
|
Description: Disable usage of embedded library copies
Author: James Pages <james.page@canonical.com>
Forwarded: no
--- a/build.xml
+++ b/build.xml
@@ -1014,7 +1014,7 @@
</copy>
</target>
- <target name="compile" depends="download-compile,validate">
+ <target name="compile" depends="setup-bnd,validate">
<!-- Compile internal server components -->
<javac srcdir="java" destdir="${tomcat.classes}"
debug="${compile.debug}"
@@ -1513,9 +1513,9 @@
<target name="deploy" depends="package,build-docs,build-tomcat-jdbc,compile-webapp-examples,deploy-webapps"
description="Default. Builds a working Tomcat instance">
-
+<!--
<copy tofile="${tomcat.build}/bin/commons-daemon.jar" file="${commons-daemon.jar}" />
-
+-->
<!-- Copy scripts -->
<copy todir="${tomcat.build}/bin">
<fileset dir="bin">
|