From dd6faf62bb6300908b7e5df6d76244f039b63af6 Mon Sep 17 00:00:00 2001 From: "Yejeong, Ham" Date: Mon, 12 Jan 2026 21:57:48 +0900 Subject: [PATCH] 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 --- spring-aspects/spring-aspects.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-aspects/spring-aspects.gradle b/spring-aspects/spring-aspects.gradle index 6ca211a8dd6..a79c4c8d5fc 100644 --- a/spring-aspects/spring-aspects.gradle +++ b/spring-aspects/spring-aspects.gradle @@ -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" }