Author: markt
Date: Sun Apr 1 13:17:48 2012
New Revision: 1308102
URL: http://svn.apache.org/viewvc?rev=1308102&view=rev
Log:
Don't copy the WEB-INF directories
Modified:
tomcat/site/trunk/build.xml
Modified: tomcat/site/trunk/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/site/trunk/build.xml?rev=1308102&r1=1308101&r2=1308102&view=diff
==============================================================================
--- tomcat/site/trunk/build.xml (original)
+++ tomcat/site/trunk/build.xml Sun Apr 1 13:17:48 2012
@@ -120,13 +120,19 @@
<!-- Copy the latest versions -->
<copy todir="${docs.dest}/tomcat-5.5-doc" >
- <fileset dir="${tomcat55.home}/tomcat-5.5-doc" />
+ <fileset dir="${tomcat55.home}/tomcat-5.5-doc" >
+ <exclude name="/WEB-INF/**" />
+ </fileset>
</copy>
<copy todir="${docs.dest}/tomcat-6.0-doc" >
- <fileset dir="${tomcat60.home}/tomcat-6.0-doc" />
+ <fileset dir="${tomcat60.home}/tomcat-6.0-doc" >
+ <exclude name="/WEB-INF/**" />
+ </fileset>
</copy>
<copy todir="${docs.dest}/tomcat-7.0-doc" >
- <fileset dir="${tomcat70.home}/tomcat-7.0-doc" />
+ <fileset dir="${tomcat70.home}/tomcat-7.0-doc" >
+ <exclude name="/WEB-INF/**" />
+ </fileset>
</copy>
<!-- Update the JK connectors docs -->
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]