kinman 2003/02/10 15:50:28 Modified: jsr152 build.xml Removed: jsr152/examples/jsp2/el Functions.java.txt jsr152/examples/jsp2/jspattribute FooBean.java.txt ShuffleSimpleTag.java.txt TileSimpleTag.java.txt jsr152/examples/jsp2/misc EchoAttributesTag.java.txt jsr152/examples/jsp2/simpletag BookBean.java.txt FindBookSimpleTag.java.txt Functions.java.txt HelloWorldSimpleTag.java.txt RepeatSimpleTag.java.txt Log: - Patch by Jan Luehe: "Modified the build.xml in jakarta-servletapi-5/jsr152 to automatically create "*.java.txt" files from "*.java" files, so we no longer have to sync those up manually." Revision Changes Path 1.5 +41 -0 jakarta-servletapi-5/jsr152/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-servletapi-5/jsr152/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- build.xml 14 Oct 2002 22:44:07 -0000 1.4 +++ build.xml 10 Feb 2003 23:50:28 -0000 1.5 @@ -115,6 +115,47 @@ </fileset> </copy> + <copy todir="${jsp-api.build}/examples/jsp2/simpletag"> + <fileset dir="examples/WEB-INF/classes/jsp2/examples"> + <include name="BookBean.java"/> + </fileset> + <fileset dir="examples/WEB-INF/classes/jsp2/examples/simpletag"> + <include name="FindBookSimpleTag.java"/> + <include name="RepeatSimpleTag.java"/> + <include name="HelloWorldSimpleTag.java"/> + </fileset> + <fileset dir="examples/WEB-INF/classes/jsp2/examples/el"> + <include name="Functions.java"/> + </fileset> + <mapper type="glob" from="*.java" to="*.java.txt"/> + </copy> + + <copy todir="${jsp-api.build}/examples/jsp2/jspattribute"> + <fileset dir="examples/WEB-INF/classes/jsp2/examples"> + <include name="FooBean.java"/> + </fileset> + <fileset dir="examples/WEB-INF/classes/jsp2/examples/simpletag"> + <include name="ShuffleSimpleTag.java"/> + <include name="TileSimpleTag.java"/> + <include name="HelloWorldSimpleTag.java"/> + </fileset> + <mapper type="glob" from="*.java" to="*.java.txt"/> + </copy> + + <copy todir="${jsp-api.build}/examples/jsp2/el"> + <fileset dir="examples/WEB-INF/classes/jsp2/examples/el"> + <include name="Functions.java"/> + </fileset> + <mapper type="glob" from="*.java" to="*.java.txt"/> + </copy> + + <copy todir="${jsp-api.build}/examples/jsp2/misc"> + <fileset dir="examples/WEB-INF/classes/jsp2/examples/simpletag"> + <include name="EchoAttributesTag.java"/> + </fileset> + <mapper type="glob" from="*.java" to="*.java.txt"/> + </copy> + <javac srcdir="examples/WEB-INF/classes" destdir="${jsp-api.build}/examples/WEB-INF/classes" debug="${compile.debug}" deprecation="${compile.deprecation}"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]