Seems like more of a gradle-user question... But here is how I have done it in the past:
http://anonsvn.jboss.org/repos/hibernate/core/branches/gradle2/hibernate- release/hibernate-release.gradle Look for the aggregateJavadocs task, which is a special task I developed that (1) "flattens" the Javadoc task configuration and (2) adds this aggregator bit. The code for this is available at http://anonsvn.jboss.org/repos/hibernate/core/branches/gradle2/buildSrc/src/main/groovy/org/hibernate/gradle/javadoc/ Note however that you can achieve all this via the standard Javadoc task. Just configure it as you normally would and then use the commented-out section from right above the "aggregator" section in the "aggregateJavadocs" task configuration. On Monday, October 18, 2010, at 05:05 pm, Joern Huxhorn wrote: > Hi, > > is there an easy way to create sources and javadoc archives combining all > submodules? While I've created a large amount of fine-grained modules, I'd > also like to create a big javadoc file containing all documentation of all > submodules, especially since the documentation would be interlinked in > that case. > > Cheers, > Joern. > --------------------------------------------------------------------- > To unsubscribe from this list, please visit: > > http://xircles.codehaus.org/manage_email --- Steve Ebersole <[email protected]> http://hibernate.org --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
