You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/08/23 01:44:40 UTC

svn commit: r433803 - /maven/maven-1/plugins/trunk/pdf/plugin.jelly

Author: ltheussl
Date: Tue Aug 22 16:44:38 2006
New Revision: 433803

URL: http://svn.apache.org/viewvc?rev=433803&view=rev
Log:
Make sure all xdoc images are available.

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

Modified: maven/maven-1/plugins/trunk/pdf/plugin.jelly
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/pdf/plugin.jelly?rev=433803&r1=433802&r2=433803&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pdf/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/pdf/plugin.jelly Tue Aug 22 16:44:38 2006
@@ -119,8 +119,12 @@
     </j:if>
     <!-- Create working directory -->
     <mkdir dir="${internal_pdf_workingDir}"/>
+    <maven:get plugin="maven-xdoc-plugin" property="plugin.resources" var="xdoc.plugin.resources" />
     <copy todir="${maven.docs.dest}/images/" overwrite="yes" filtering="no">
       <fileset dir="${plugin.resources}/images/">
+        <include name="**/*"/>
+      </fileset>
+      <fileset dir="${xdoc.plugin.resources}/images/">
         <include name="**/*"/>
       </fileset>
     </copy>