mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 22:19:03 +00:00
Build: Fix deprecated Groovy syntax in spring-aspects
Replace legacy Groovy DSL property assignment (space-separated) with the standard assignment operator (=) in spring-aspects.gradle. The legacy syntax is deprecated in Gradle 9 and will be removed in Gradle 10. This change eliminates deprecation warnings during the build and ensures future compatibility. See gh-36132 Signed-off-by: Yejeong, Ham <dev@thelightway.kr>
This commit is contained in:
committed by
Brian Clozel
parent
cbc2c63abc
commit
dd6faf62bb
@@ -3,15 +3,15 @@ description = "Spring Aspects"
|
||||
apply plugin: "io.freefair.aspectj"
|
||||
|
||||
compileAspectj {
|
||||
sourceCompatibility "17"
|
||||
targetCompatibility "17"
|
||||
sourceCompatibility = "17"
|
||||
targetCompatibility = "17"
|
||||
ajcOptions {
|
||||
compilerArgs += "-parameters"
|
||||
}
|
||||
}
|
||||
compileTestAspectj {
|
||||
sourceCompatibility "17"
|
||||
targetCompatibility "17"
|
||||
sourceCompatibility = "17"
|
||||
targetCompatibility = "17"
|
||||
ajcOptions {
|
||||
compilerArgs += "-parameters"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user