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/04/19 03:20:16 UTC

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

Author: hlship
Date: Tue Apr 19 01:20:16 2011
New Revision: 1094838

URL: http://svn.apache.org/viewvc?rev=1094838&view=rev
Log:
TAP5-116: Clean the build directory at the root (to remove aggregated JavaDoc)

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1094838&r1=1094837&r2=1094838&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Tue Apr 19 01:20:16 2011
@@ -89,10 +89,9 @@ subprojects {
 
 subprojects.each { evaluationDependsOn(it.name) }
 
-// Cribbed from
-https://github.com/hibernate/hibernate-core/blob/master/release/release.gradle#L19
+// Cribbed from https://github.com/hibernate/hibernate-core/blob/master/release/release.gradle#L19
 
-javadocBuildDir = dir( buildDirName + "/documentation/javadocs" )
+javadocBuildDir = dir(buildDirName + "/documentation/javadocs")
 
 task aggregateJavadocs(type: Javadoc) {
    description = "Build the aggregated JavaDocs for all modules"
@@ -125,3 +124,7 @@ task aggregateJavadocs(type: Javadoc) {
        }
    }
 }
+
+task clean(type: Delete) {
+  delete buildDirName
+}