I took a look at the build and found the following problems:

1. Repositories are only declared for subprojects. This is why resolving of
dependencies fails. Change to:

allprojects {
    repositories {
        mavenCentral()
               
        // All things JBoss/Javassist/Hibernate
        mavenRepo urls:
"https://repository.jboss.org/nexus/content/repositories/releases/"; 
    }
}

2. I haven't investigated why evaluation needs to depend on subprojects, but
instead of:

subprojects.each { evaluationDependsOn(it.name) } 

which is the same as:

subprojects.each { it.evaluationDependsOn(it.name) }

it should probably be:

subprojects.each { project.evaluationDependsOn(it.name) }

After these changes, 'gradle aggregateJavadoc' works for me, although the
style of the generated Javadoc looks different to what I'm used to from
Tapestry.

--
Peter Niederwieser
Principal Engineer, Gradleware 
http://gradleware.com
Creator, Spock Framework 
http://spockframework.org
Blog: http://pniederw.wordpress.com
Twitter: @pniederw

--
View this message in context: 
http://gradle.1045684.n5.nabble.com/Aggregate-JavaDoc-Once-More-Into-The-Breach-tp4486124p4486358.html
Sent from the gradle-user mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to