Author: ajaquith
Date: Sat May 23 13:32:30 2009
New Revision: 777920
URL: http://svn.apache.org/viewvc?rev=777920&view=rev
Log:
Fixed bug in build.xml where JSP-precompiled WARs were not being built
correctly.
Modified:
incubator/jspwiki/trunk/build.xml
Modified: incubator/jspwiki/trunk/build.xml
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/build.xml?rev=777920&r1=777919&r2=777920&view=diff
==============================================================================
--- incubator/jspwiki/trunk/build.xml (original)
+++ incubator/jspwiki/trunk/build.xml Sat May 23 13:32:30 2009
@@ -386,7 +386,7 @@
</schemavalidate>
<!-- Clean up stuff from last time -->
<delete quiet="true">
- <fileset dir="${war.build}"
includes="JSPWiki-jsp.jar,jasper-runtime-*.jar,commons-el-*.jar"/>
+ <fileset dir="${war.build}"
includes="JSPWiki-jsp.jar,jasper-runtime-*.jar,commons-el-*.jar,web-fragment.xmlf,web.xml"/>
</delete>
<copy file="${code.web}/WEB-INF/web.xml" toFile="${war.build}/web.xml"
overwrite="false" />
</target>