Fix aggregatedJavadocs task

This commit is contained in:
dordsor21 2019-07-10 13:55:54 +01:00
parent cafd4bfece
commit 3492ac63c7

View File

@ -157,24 +157,22 @@ configure(['worldedit-core', 'worldedit-bukkit', 'favs'].collect { project("$it"
// include '**/*.java' // include '**/*.java'
//} //}
} }
task aggregatedJavadocs(type: Javadoc, description: 'Generate javadocs from all child projects as if it was a single project', group: 'Documentation') { }
destinationDir = file("./docs/javadoc") task aggregatedJavadocs(type: Javadoc, description: 'Generate javadocs from all child projects as if it was a single project', group: 'Documentation') {
title = "$project.name $version API" destinationDir = file("./docs/javadoc")
options.author true title = "$project.name $version API"
options.links 'http://docs.spring.io/spring/docs/4.3.x/javadoc-api/', 'http://docs.oracle.com/javase/8/docs/api/', 'http://docs.spring.io/spring-ws/docs/2.3.0.RELEASE/api/', 'http://docs.spring.io/spring-security/site/docs/4.0.4.RELEASE/apidocs/' options.author true
options.addStringOption('Xdoclint:none', '-quiet') options.links 'http://docs.spring.io/spring/docs/4.3.x/javadoc-api/', 'http://docs.oracle.com/javase/8/docs/api/', 'http://docs.spring.io/spring-ws/docs/2.3.0.RELEASE/api/', 'http://docs.spring.io/spring-security/site/docs/4.0.4.RELEASE/apidocs/'
options.addStringOption('Xdoclint:none', '-quiet')
delete "./docs" delete "./docs"
subprojects.each { proj -> subprojects.each { proj ->
proj.tasks.withType(Javadoc).each { javadocTask -> proj.tasks.withType(Javadoc).each { javadocTask ->
source += javadocTask.source source += javadocTask.source
classpath += javadocTask.classpath classpath += javadocTask.classpath
excludes += javadocTask.excludes excludes += javadocTask.excludes
includes += javadocTask.includes includes += javadocTask.includes
}
} }
} }
} }