From 92e2a05b324e0fc8cb0bc4e2617fa5a897929206 Mon Sep 17 00:00:00 2001 From: James Fredley Date: Mon, 3 Mar 2025 19:15:40 -0500 Subject: [PATCH 1/2] use spring-boot-gradle-plugin version from grails-bom --- examples/spring-boot-hibernate/build.gradle | 3 ++- gradle.properties | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/spring-boot-hibernate/build.gradle b/examples/spring-boot-hibernate/build.gradle index e45f687f1..acaa18a15 100644 --- a/examples/spring-boot-hibernate/build.gradle +++ b/examples/spring-boot-hibernate/build.gradle @@ -3,7 +3,8 @@ buildscript { mavenCentral() } dependencies { - classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootGradlePluginVersion" + classpath platform("org.grails:grails-bom:$grailsVersion") + classpath "org.springframework.boot:spring-boot-gradle-plugin" } } diff --git a/gradle.properties b/gradle.properties index cbf49a317..16c84fb32 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,6 @@ jbossTransactionApiVersion=2.0.0.Final yakworksHibernateGroovyProxyVersion=1.1 micronautPlatformVersion=4.6.3 picocliVersion=4.7.6 -springBootGradlePluginVersion=3.4.2 org.gradle.caching=true org.gradle.parallel=false From d1b4b5bda3b1e3220d6e421ee44bf0f47f199847 Mon Sep 17 00:00:00 2001 From: James Fredley Date: Mon, 3 Mar 2025 19:19:42 -0500 Subject: [PATCH 2/2] add repo.grails.org --- examples/spring-boot-hibernate/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/spring-boot-hibernate/build.gradle b/examples/spring-boot-hibernate/build.gradle index acaa18a15..3a0d19831 100644 --- a/examples/spring-boot-hibernate/build.gradle +++ b/examples/spring-boot-hibernate/build.gradle @@ -1,6 +1,7 @@ buildscript { repositories { mavenCentral() + maven { url "https://repo.grails.org/grails/core" } } dependencies { classpath platform("org.grails:grails-bom:$grailsVersion")