diff --git a/dependabot/build.gradle b/dependabot/build.gradle index 82f15762bf..7de0534aa6 100644 --- a/dependabot/build.gradle +++ b/dependabot/build.gradle @@ -1,4 +1,4 @@ -// Generated on Mon Oct 21 12:32:36 PDT 2024 by: ./gradlew :grails-bom:dependabotBuild +// Generated on Mon Oct 21 12:41:56 PDT 2024 by: ./gradlew :grails-bom:dependabotBuild plugins { id 'java-library' } @@ -85,7 +85,6 @@ dependencies { api "org.grails.profiles:vue:${project['profiles-vue.version']}" api "org.grails.profiles:web-plugin:${project['profiles-web-plugin.version']}" api "org.grails.profiles:web:${project['profiles-web.version']}" - api "org.yaml:snakeyaml:${project['snakeyaml.version']}" api "org.spockframework:spock-core:${project['spock.version']}" api "org.spockframework:spock-spring:${project['spock.version']}" api "com.github.spotbugs:spotbugs-annotations:${project['spotbugs-annotations.version']}" diff --git a/gradle.properties b/gradle.properties index 1e88f02c73..ba2ea64db9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -23,7 +23,7 @@ org.gradle.parallel=true org.gradle.daemon=true org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx1536M -XX:MaxMetaspaceSize=1024M -# Generated on Mon Oct 21 12:32:36 PDT 2024 by: ./gradlew :grails-bom:syncProps +# Generated on Mon Oct 21 12:41:56 PDT 2024 by: ./gradlew :grails-bom:syncProps # Only version value modifications allowed after this point. Do not insert or change version names. ant.version=1.10.15 asciidoctorj.version=3.0.0 @@ -82,7 +82,6 @@ profiles-rest-api-plugin.version=7.0.1-SNAPSHOT profiles-vue.version=7.0.1-SNAPSHOT profiles-web.version=7.0.1-SNAPSHOT profiles-web-plugin.version=7.0.1-SNAPSHOT -snakeyaml.version=2.3 spock.version=2.3-groovy-4.0 spotbugs-annotations.version=4.8.6 spring-boot.version=3.3.4 diff --git a/grails-bom/build.gradle b/grails-bom/build.gradle index c248904a5a..d9665bd990 100644 --- a/grails-bom/build.gradle +++ b/grails-bom/build.gradle @@ -67,7 +67,6 @@ ext { org.springframework.boot:spring-boot-cli:::spring-boot org.springframework:springloaded:: org.xhtmlrenderer:flying-saucer-pdf-openpdf:: - org.yaml:snakeyaml:: """.stripIndent(true).trim().readLines().collect { def info = it.toString().split(':', -1) def dep = [group: info[0], names: info[1].split(','), modules: info[2].split(','), version: info.length >= 4? info[3] : null]