Author: hlship
Date: Tue Jun 14 00:41:00 2011
New Revision: 1135352
URL: http://svn.apache.org/viewvc?rev=1135352&view=rev
Log:
Temporarily comment out the lines that causes dependency resolutions problems
when building with a clean Gradle cache
Modified:
tapestry/tapestry5/trunk/build.gradle
Modified: tapestry/tapestry5/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1135352&r1=1135351&r2=1135352&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Tue Jun 14 00:41:00 2011
@@ -132,7 +132,9 @@ task aggregateJavadoc(type: Javadoc) {
bottom = "Copyright © 2003-2011 <a
href=\"http://tapestry.apache.org\">The Apache Software Foundation</a>."
use = true
links = [ 'http://download.oracle.com/javase/6/docs/api/',
'http://download.oracle.com/javaee/6/api/' ]
- addStringOption "tagletpath", configurations.javadoc.asPath
+ // Temporarily commented out tagletpath while we get some help
+ // with the Gradle dependency issue
+ // addStringOption "tagletpath", configurations.javadoc.asPath
addStringOption "taglet",
"org.apache.tapestry5.javadoc.TapestryDocTaglet"
exclude "org/apache/tapestry5/internal/plastic/asm/**"
@@ -160,7 +162,9 @@ task clean(type: Delete) {
delete buildDirName
}
-task continuousIntegration(dependsOn: [subprojects.build, 'aggregateJavadoc'])
+// Temporarily commented out aggregateJavadoc while we get some help
+// with the Gradle dependency issue
+task continuousIntegration(dependsOn: [subprojects.build /* ,
'aggregateJavadoc' */])
task wrapper(type: Wrapper) {
gradleVersion = '1.0-milestone-3'