jdaugherty commented on code in PR #14133: URL: https://github.com/apache/grails-core/pull/14133#discussion_r2044519369
########## dependencies.gradle: ########## @@ -0,0 +1,102 @@ +// see https://github.com/dependabot/dependabot-core/issues/1618 +// This file allows dependabot to update the gradle dependencies + +// This file provides the 'grails-bom' dependencies, while grails-gradle/dependencies.gradle provides the 'grails-gradle-bom' dependencies +// These files are split to facilitate separation of build vs application dependencies. These are the application dependencies. +ext { + bomDependencyVersions = [ + 'asset-pipeline-grails.version': '5.0.9', + 'bootstrap-icons.version' : '1.11.3', + 'bootstrap.version' : '5.3.3', + 'commons-codec.version' : '1.17.1', + 'geb-spock.version' : '7.0', + 'grails-cache.version' : '8.0.0-SNAPSHOT', + 'grails-data.version' : '9.0.0-SNAPSHOT', + 'grails-geb.version' : '5.0.0-SNAPSHOT', + 'grails-profiles.version' : '10.0.2', + 'groovy.version' : '4.0.25', + 'gsp.version' : '7.0.0-SNAPSHOT', + 'h2.version' : '2.3.232', + 'jackson.version' : '2.18.2', + 'jquery.version' : '3.7.1', + 'liquibase-hibernate5.version' : '4.27.0', + 'mongodb.version' : '5.3.1', + 'rxjava.version' : '1.3.8', + 'rxjava2.version' : '2.2.21', + 'rxjava3.version' : '3.1.10', + 'spock.version' : '2.3-groovy-4.0', + ] + + // Note: the name of the dependency must be the prefix of the property name so properties in the pom are resolved correctly + bomPlatformDependencies = [ + spock_bom : "org.spockframework:spock-bom:${bomDependencyVersions['spock.version']}", + jackson_bom : "com.fasterxml.jackson:jackson-bom:${bomDependencyVersions['jackson.version']}", + groovy_bom : "org.apache.groovy:groovy-bom:${bomDependencyVersions['groovy.version']}" + ] + + // Note: the name of the dependency must be the prefix of the property name so properties in the pom are resolved correctly + bomDependencies = [ Review Comment: See previous comment - it's to match the style of spring boot's bom (also jackson, and groovy) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
