patrickl 2002/08/01 10:14:54
Modified: . build.xml
Log:
Add all of the new *.xsd files to the servlet.jar
Revision Changes Path
1.2 +9 -4 jakarta-servletapi-5/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-servletapi-5/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.xml 16 Jul 2002 16:38:40 -0000 1.1
+++ build.xml 1 Aug 2002 17:14:54 -0000 1.2
@@ -71,16 +71,21 @@
<!-- Servlet resources -->
<copy todir="${servletapi.build}/classes/javax/servlet/resources">
- <fileset dir="src/share/dtd">
- <include name="web-app*.dtd"/>
+ <fileset dir="src/share/dtd" includes="*.dtd,*.xsd">
+ <exclude name="jsp*.dtd"/>
+ <exclude name="jsp*.xsd"/>
+ <exclude name="web-jsp*.dtd"/>
+ <exclude name="web-jsp*.xsd"/>
</fileset>
</copy>
<!-- JSP resources -->
<copy todir="${servletapi.build}/classes/javax/servlet/jsp/resources">
<fileset dir="src/share/dtd">
- <include name="web-jsptaglibrary*.dtd"/>
- <include name="jspxml.*"/>
+ <include name="jsp*.dtd"/>
+ <include name="jsp*.xsd"/>
+ <include name="web-jsp*.dtd"/>
+ <include name="web-jsp*.xsd"/>
</fileset>
</copy>
--
To unsubscribe, e-mail: <mailto:tomcat-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@jakarta.apache.org>
|