costin 00/12/29 12:05:14 Modified: . build.xml Added: src/build manifest.stop-tomcat Log: Ops, forgot one change - build.xml will now build auto-executable jar file for stop-tomcat.jar. Also, in the previous commit - the server protocols will start at "engineStart" hook instead of engineInit. Revision Changes Path 1.101 +19 -1 jakarta-tomcat/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat/build.xml,v retrieving revision 1.100 retrieving revision 1.101 diff -u -r1.100 -r1.101 --- build.xml 2000/12/29 00:20:20 1.100 +++ build.xml 2000/12/29 20:05:13 1.101 @@ -129,6 +129,24 @@ </jar> </target> + <target name="stop-tomcat.jar" depends="init"> + <javac destdir="${tomcat.build}/classes" + debug="${debug}" + optimize="${optimize}" + deprecation="off" + srcdir="src/share"> + <!-- no dependencies --> + <include name="org/apache/tomcat/startup/StopTomcat.java"/> + </javac> + <jar jarfile="${tomcat.build}/lib/stop-tomcat.jar" + basedir="${tomcat.build}/classes" + manifest="src/build/manifest.stop-tomcat"> + <include name="org/apache/tomcat/startup/StopTomcat.class"/> + <include name="org/apache/tomcat/util/StringManager.class"/> + <include name="org/apache/tomcat/resources/LocalStrings*"/> + </jar> + </target> + <!-- ==================== Tomcat core ==================== --> <target name="tomcat_core" depends="init"> @@ -238,7 +256,7 @@ <jar jarfile="${tomcat.build}/lib/jasper.jar" basedir="${tomcat.build}/classes" includes="org/apache/jasper/**"/> </target> - <target name="tomcat-jars-new" depends="tomcat_util,tomcat.jar,tomcat_core,jasper,tomcat_modules,facade22,tomcat_config"> + <target name="tomcat-jars-new" depends="tomcat_util,tomcat.jar,stop-tomcat.jar,tomcat_core,jasper,tomcat_modules,facade22,tomcat_config"> </target> <!-- ==================== J2EE integration ========== --> 1.1 jakarta-tomcat/src/build/manifest.stop-tomcat Index: manifest.stop-tomcat =================================================================== Manifest-Version: 1.0 Main-Class: org.apache.tomcat.startup.StopTomcat --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]