Restore special spring-aspects javadoc treatment

This commit is contained in:
Juergen Hoeller 2016-07-04 23:59:00 +02:00
parent f38a4b9040
commit adb935db79
1 changed files with 8 additions and 0 deletions

View File

@ -1113,6 +1113,14 @@ configure(rootProject) {
maxMemory = "1024m"
destinationDir = new File(buildDir, "api")
doFirst {
classpath = files(
// ensure the javadoc process can resolve types compiled from .aj sources
project(":spring-aspects").sourceSets.main.output
)
classpath += files(subprojects.collect { it.sourceSets.main.compileClasspath })
}
}
task docsZip(type: Zip, dependsOn: 'reference') {