You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/02/23 00:42:31 UTC

svn commit: r379986 - /maven/maven-1/plugins/trunk/changes/plugin.jelly

Author: aheritier
Date: Wed Feb 22 15:42:29 2006
New Revision: 379986

URL: http://svn.apache.org/viewcvs?rev=379986&view=rev
Log:
Fix ant:copy tag syntax

Modified:
    maven/maven-1/plugins/trunk/changes/plugin.jelly

Modified: maven/maven-1/plugins/trunk/changes/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changes/plugin.jelly?rev=379986&r1=379985&r2=379986&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changes/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/changes/plugin.jelly Wed Feb 22 15:42:29 2006
@@ -74,7 +74,9 @@
 
     <!-- Copy the images -->
     <mkdir dir="${maven.docs.dest}/images"/>
-    <copy todir="${maven.docs.dest}/images" fromdir="${plugin.resources}/images"/>
+    <copy todir="${maven.docs.dest}/images">
+      <fileset dir="${plugin.resources}/images"/>
+    </copy>
     
   </goal>