You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2005/10/14 02:36:45 UTC

svn commit: r320954 - in /maven/components/trunk: maven-artifact-ant/sample.build.xml maven-site/src/site/apt/ant-tasks.apt

Author: brett
Date: Thu Oct 13 17:36:41 2005
New Revision: 320954

URL: http://svn.apache.org/viewcvs?rev=320954&view=rev
Log:
add flatten mapper to docs for copying into WEB-INF

Modified:
    maven/components/trunk/maven-artifact-ant/sample.build.xml
    maven/components/trunk/maven-site/src/site/apt/ant-tasks.apt

Modified: maven/components/trunk/maven-artifact-ant/sample.build.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-artifact-ant/sample.build.xml?rev=320954&r1=320953&r2=320954&view=diff
==============================================================================
--- maven/components/trunk/maven-artifact-ant/sample.build.xml (original)
+++ maven/components/trunk/maven-artifact-ant/sample.build.xml Thu Oct 13 17:36:41 2005
@@ -102,6 +102,11 @@
       <fileset refid="my.compile.dependency.fileset"/>
     </copy>
 
+    <copy todir="target/my-compile-dependencies/WEB-INF/lib">
+      <fileset refid="my.compile.dependency.fileset"/>
+      <mapper type="flatten" />
+    </copy>
+
     <antcall target="test-deploy" />
 
     <antcall target="test-legacy-pom" />

Modified: maven/components/trunk/maven-site/src/site/apt/ant-tasks.apt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-site/src/site/apt/ant-tasks.apt?rev=320954&r1=320953&r2=320954&view=diff
==============================================================================
--- maven/components/trunk/maven-site/src/site/apt/ant-tasks.apt (original)
+++ maven/components/trunk/maven-site/src/site/apt/ant-tasks.apt Thu Oct 13 17:36:41 2005
@@ -102,6 +102,7 @@
 -----
 <copy todir="${webapp.output}/WEB-INF/lib">
   <fileset refid="depdendency.fileset" />
+  <mapper type="flatten" />
 </copy>
 -----