costin 2002/10/14 14:21:32 Modified: catalina build.xml Log: A small change to allow 'light' builds. The normal build should be identical ( since the old target is called ), I just added made compile/jar separate. Revision Changes Path 1.24 +6 -2 jakarta-tomcat-catalina/catalina/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/build.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- build.xml 11 Oct 2002 10:55:07 -0000 1.23 +++ build.xml 14 Oct 2002 21:21:32 -0000 1.24 @@ -837,8 +837,8 @@ <!-- ====================== DEPLOY: Create Catalina JARs ================ --> - <target name="deploy-catalina" depends="deploy-static,build-main" - description="Build and deploy Catalina component"> + <target name="catalina-jars" depends="deploy-static,build-catalina" + description="Build catalina jars"> <!-- Catalina Bootstrap JAR File --> <jar jarfile="${catalina.deploy}/bin/bootstrap.jar" @@ -961,6 +961,10 @@ </fileset> </jar> + </target> + + <target name="deploy-catalina" depends="deploy-static,build-main,catalina-jars" + description="Build and deploy Catalina component"> </target>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>