You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by aj...@apache.org on 2008/02/24 19:17:06 UTC

svn commit: r630646 - /incubator/jspwiki/trunk/build.xml

Author: ajaquith
Date: Sun Feb 24 10:17:04 2008
New Revision: 630646

URL: http://svn.apache.org/viewvc?rev=630646&view=rev
Log:
[JSPWIKI-195]: Superfluous WEB-INF/i18n directory created during war build. Also, several unneeded JARs were also being included.

Modified:
    incubator/jspwiki/trunk/build.xml

Modified: incubator/jspwiki/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/build.xml?rev=630646&r1=630645&r2=630646&view=diff
==============================================================================
--- incubator/jspwiki/trunk/build.xml (original)
+++ incubator/jspwiki/trunk/build.xml Sun Feb 24 10:17:04 2008
@@ -387,7 +387,17 @@
        <lib dir="lib" includes="*.jar" excludes="servlet-api.jar jsp-api.jar"/>
        <lib file="${jarfile}" />
        <fileset dir="${code.src}/webdocs" includes="**" excludes="**/FCK/jsp" />
-       <webinf dir="etc" includes="**" excludes="**.tmpl web.xml ini/** *.jks db/** lib/** classes/**/*.class jspwiki-container.policy" />
+       <webinf dir="etc">
+         <include name="dtd/**" />
+         <include name="jsp/**" />
+         <include name="commons-logging.properties" />
+         <include name="jspwiki.jaas" />
+         <include name="jspwiki.policy" />
+         <include name="jspwiki.properties" />
+         <include name="*.tld" />
+         <include name="userdatabase.xml" />
+         <include name="groupdatabase.xml" />
+       </webinf>
        <classes dir="etc" includes="oscache.properties" />
     </war>