This is an automated email from the ASF dual-hosted git repository.

matrei pushed a commit to branch post-gradle-merge
in repository https://gitbox.apache.org/repos/asf/grails-core.git

commit cec761d7b09593b07e131a831d49a9074b0c96a6
Author: Mattias Reichel <mattias.reic...@gmail.com>
AuthorDate: Wed Apr 16 11:23:20 2025 +0200

    build: use correct dependency for `YamlPropertySourceLoader`
---
 grails-gradle/model/build.gradle | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/grails-gradle/model/build.gradle b/grails-gradle/model/build.gradle
index f3dd538d55..322bbb38dd 100644
--- a/grails-gradle/model/build.gradle
+++ b/grails-gradle/model/build.gradle
@@ -25,7 +25,9 @@ dependencies {
     testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
 
     implementation 'org.springframework:spring-context'
-    implementation 'org.springframework.boot:spring-boot-autoconfigure' // 
required for org.springframework.boot.env.YamlPropertySourceLoader
+    implementation 'org.springframework.boot:spring-boot', {
+        // impl: YamlPropertySourceLoader
+    }
 
     compileOnly 'jline:jline' // for profile compilation
 

Reply via email to