Further Gradle deprecation fixes

Closes gh-36132
This commit is contained in:
Brian Clozel
2026-01-13 09:32:08 +01:00
parent dd6faf62bb
commit a62699ccfc
3 changed files with 13 additions and 8 deletions
+2 -1
View File
@@ -20,6 +20,7 @@ dependencies {
}
}
def springAspectsOutput = project(":spring-aspects").sourceSets.main.output
javadoc {
javadocTool.set(javaToolchains.javadocToolFor({
languageVersion = JavaLanguageVersion.of(25)
@@ -49,7 +50,7 @@ javadoc {
doFirst {
classpath += files(
// ensure the javadoc process can resolve types compiled from .aj sources
project(":spring-aspects").sourceSets.main.output
springAspectsOutput
)
classpath += files(moduleProjects.collect { it.sourceSets.main.compileClasspath })
}