Author: hlship
Date: Wed Apr 20 17:25:13 2011
New Revision: 1095464

URL: http://svn.apache.org/viewvc?rev=1095464&view=rev
Log:
TAP5-0116: Properly implement the continuousIntegration task for use by the 
Jenkins build server

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1095464&r1=1095463&r2=1095464&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Wed Apr 20 17:25:13 2011
@@ -93,7 +93,7 @@ subprojects.each { evaluationDependsOn(i
 
 javadocBuildDir = dir(buildDirName + "/documentation/javadocs")
 
-task aggregateJavadocs(type: Javadoc) {
+task aggregateJavadoc(type: Javadoc) {
    description = "Build the aggregated JavaDocs for all modules"
    maxMemory = '512m'
    destinationDir = javadocBuildDir.dir
@@ -128,3 +128,5 @@ task aggregateJavadocs(type: Javadoc) {
 task clean(type: Delete) {
   delete buildDirName
 }
+
+task continuousIntegration(dependsOn: [subprojects.build, 'aggregateJavadoc'])
\ No newline at end of file


Reply via email to