Browse Source

Restore special spring-aspects javadoc treatment

pull/1099/head
Juergen Hoeller 8 years ago
parent
commit
adb935db79
  1. 8
      build.gradle

8
build.gradle

@ -1113,6 +1113,14 @@ configure(rootProject) { @@ -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') {

Loading…
Cancel
Save