remm 2002/10/11 03:56:55 Modified: . build.properties.default build.xml Log: - Remove dependency on daemon. Add one on launcher. Revision Changes Path 1.42 +8 -9 jakarta-tomcat-5/build.properties.default Index: build.properties.default =================================================================== RCS file: /home/cvs/jakarta-tomcat-5/build.properties.default,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- build.properties.default 10 Oct 2002 18:00:16 -0000 1.41 +++ build.properties.default 11 Oct 2002 10:56:55 -0000 1.42 @@ -59,14 +59,13 @@ commons-collections.loc=http://jakarta.apache.org/builds/jakarta-commons/release/commons-collections/v2.0/commons-collections-2.0.tar.gz -# ----- Commons Daemon, version 20020731 or later ----- -commons-daemon.home=${base.path}/commons-daemon -commons-daemon.lib=${commons-daemon.home} -commons-daemon.jar=${commons-daemon.lib}/commons-daemon.jar -commons-daemon.bin=${commons-daemon.home}/bin -commons-daemon-launcher.jar=${commons-daemon.bin}/commons-launcher.jar -commons-daemon-launcher-bootstrap.class=${commons-daemon.bin}/LauncherBootstrap.class -commons-daemon.loc=jakarta-commons-sandbox/daemon +# ----- Commons Launcher, version 20021012 or later ----- +commons-launcher.home=${base.path}/commons-launcher +commons-launcher.lib=${commons-launcher.home} +commons-launcher.bin=${commons-launcher.home}/bin +commons-launcher.jar=${commons-launcher.home}/commons-launcher.jar +commons-launcher.bootstrap.class=${commons-launcher.bin}/LauncherBootstrap.class +commons-launcher.loc=jakarta-commons-sandbox/launcher # ----- Commons Digester, version 20020820 or later ----- 1.41 +7 -11 jakarta-tomcat-5/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v retrieving revision 1.40 retrieving revision 1.41 diff -u -r1.40 -r1.41 --- build.xml 9 Oct 2002 12:20:40 -0000 1.40 +++ build.xml 11 Oct 2002 10:56:55 -0000 1.41 @@ -649,21 +649,17 @@ </antcall> <antcall target="cvsbuild"> - <param name="location" value="${commons-daemon.loc}"/> - <param name="subdir" value="${commons-daemon.home}"/> - <param name="destfile" value="${commons-daemon.jar}"/> + <param name="location" value="${commons-launcher.loc}"/> + <param name="subdir" value="${commons-launcher.home}"/> + <param name="destfile" value="${commons-launcher.jar}"/> </antcall> <copy - file="${commons-daemon.home}/dist/commons-daemon.jar" - tofile="${commons-daemon.jar}" + file="${commons-launcher.home}/dist/commons-launcher.jar" + tofile="${commons-launcher.jar}" /> <copy - file="${commons-daemon.home}/dist/bin/commons-launcher.jar" - tofile="${commons-daemon-launcher.jar}" - /> - <copy - file="${commons-daemon.home}/dist/bin/LauncherBootstrap.class" - tofile="${commons-daemon-launcher-bootstrap.class}" + file="${commons-launcher.home}/dist/bin/LauncherBootstrap.class" + tofile="${commons-launcher.bootstrap.class}" /> <antcall target="downloadgz">
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>