You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/06/09 19:31:28 UTC

svn commit: r1134010 - /tapestry/tapestry5/trunk/build.gradle

Author: hlship
Date: Thu Jun  9 17:31:28 2011
New Revision: 1134010

URL: http://svn.apache.org/viewvc?rev=1134010&view=rev
Log:
TAP5-1528: Copy images files to the JavaDoc output directory

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1134010&r1=1134009&r2=1134010&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Thu Jun  9 17:31:28 2011
@@ -155,7 +155,7 @@ task aggregateJavadoc(type: Javadoc) {
                // Some of the component .xdoc files refer to PNG images
                // (we could also exclude .java and .xdoc)
                copy {
-                 from set.java
+                 from set.java.srcDirs.toList()                 
                  into javadocBuildDir.dir
                  include '**/*.png'
                }