This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch adjust-published-dependencies in repository https://gitbox.apache.org/repos/asf/grails-redis.git
commit 3a3a519a77317e7b5278af0019d97f4674138240 Author: James Fredley <[email protected]> AuthorDate: Wed Oct 8 13:49:44 2025 -0400 Refactor dependencies to use Grails starter bundles Replaces individual Grails and Spring dependencies with 'grails-dependencies-starter-web' for compileOnly and 'grails-dependencies-test' for testImplementation. This simplifies dependency management and aligns with recommended Grails practices. --- plugin/build.gradle | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/plugin/build.gradle b/plugin/build.gradle index e7e2a57..129547e 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -38,32 +38,10 @@ dependencies { // api: Gson(transform) } - compileOnly 'org.apache.grails.data:grails-datamapping-core', { // Provided - // impl: @Transactional(runtime) - } - compileOnly 'org.apache.grails.views:grails-web-taglib', { // Provided - // Project has a taglib - } - compileOnly 'org.apache.grails.bootstrap:grails-bootstrap', { // Provided - // comp: @PluginSource(source) - } - compileOnly 'org.apache.grails:grails-core', { // Provided - // api GrailsApplication, Holders(transform) - // impl: GrailsApp, GrailsAutoConfiguration, Plugin - } - compileOnly 'org.apache.groovy:groovy' // Provided - compileOnly 'org.springframework:spring-beans', { // Provided - // api: @Autowired(transform) - } - compileOnly 'org.springframework:spring-core', { // Provided - // api: Opcodes(transform) - } + compileOnly 'org.apache.grails:grails-dependencies-starter-web' + + testImplementation 'org.apache.grails:grails-dependencies-test' - testImplementation 'org.apache.grails:grails-testing-support-web' - testImplementation 'org.springframework.boot:spring-boot-test', { - // impl: @SpringBootTest(runtime) - } - testImplementation 'org.spockframework:spock-core' } grails {
