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>