Author: kkolinko
Date: Sun Jan 15 04:54:29 2012
New Revision: 1231624
URL: http://svn.apache.org/viewvc?rev=1231624&view=rev
Log:
When building a Windows installer do not copy whole "res" folder to
output/dist, but only the files that we need. I have noticed those unneeded
files (manifest templates, checkstyle configuration etc.) when reviewing RAT
report prepared by ASF Buildbot.
Modified:
tomcat/trunk/build.xml
Modified: tomcat/trunk/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1231624&r1=1231623&r2=1231624&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Sun Jan 15 04:54:29 2012
@@ -1690,7 +1690,13 @@ Apache Tomcat ${version} native binaries
<echo message="Builds a Windows installer based on Nullsoft Installer"/>
<copy todir="${tomcat.dist}">
- <fileset dir="res" />
+ <fileset dir="res">
+ <include name="INSTALLLICENSE" />
+ <include name="License.rtf" />
+ <include name="*.bmp" />
+ <include name="*.ico" />
+ <include name="confinstall/**" />
+ </fileset>
</copy>
<copy file="${nsis.installoptions.dll}" todir="${tomcat.dist}" />
<copy file="${nsis.nsexec.dll}" todir="${tomcat.dist}" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]