You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by br...@apache.org on 2004/07/17 01:14:24 UTC

svn commit: rev 22984 - in forrest/trunk: . src/core/targets

Author: brondsem
Date: Fri Jul 16 16:14:22 2004
New Revision: 22984

Modified:
   forrest/trunk/src/core/targets/webapp.xml
   forrest/trunk/status.xml
Log:
Don't copy unneeded project files in 'war' and 'webapp' targets. fixes FOR-207

Modified: forrest/trunk/src/core/targets/webapp.xml
==============================================================================
--- forrest/trunk/src/core/targets/webapp.xml	(original)
+++ forrest/trunk/src/core/targets/webapp.xml	Fri Jul 16 16:14:22 2004
@@ -120,8 +120,9 @@
    <mkdir dir="${project.webapp}/project"/>   
    <copy toDir="${project.webapp}/project" overwrite="true" failonerror="false">
      <fileset dir="${project.home}">
-       <include name="**"/>
-       <exclude name="build/**"/>
+       <include name="forrest.properties"/>
+       <include name="${project.status}"/>
+       <include name="${project.content-dir}/**"/>
      </fileset>
    </copy>
         

Modified: forrest/trunk/status.xml
==============================================================================
--- forrest/trunk/status.xml	(original)
+++ forrest/trunk/status.xml	Fri Jul 16 16:14:22 2004
@@ -49,6 +49,9 @@
         Added new document to facilitate
         <link href="site:upgrading_06">upgrading to v0.6</link>
       </action>
+      <action dev="DB" type="update" context="build" fixes-bug="FOR-207">
+        Don't copy unneeded project files in 'war' and 'webapp' targets.
+      </action>
       <action dev="DB" type="update" context="build" fixes-bug="FOR-216">
         Add more desriptions to forrest targets.  Highlight the most common ones.
       </action>