diff --git a/build.gradle b/build.gradle index 1b04921..53ffbde 100644 --- a/build.gradle +++ b/build.gradle @@ -14,19 +14,6 @@ allprojects { repositories { mavenCentral() maven { url "https://repo.grails.org/grails/core" } - maven { - url = 'https://repo.gradle.org/gradle/libs-releases' - description = 'Needed for Gradle Tooling API' - } - } - - configurations.configureEach { - resolutionStrategy.eachDependency { DependencyResolveDetails details -> - if ((details.requested.group == 'org.codehaus.groovy' || details.requested.group == 'org.apache.groovy') && details.requested.name != 'groovy-bom') { - details.useTarget(group: 'org.apache.groovy', name: details.requested.name, version: "$groovyVersion") - details.because "The dependency coordinates are changed in Apache Groovy 4, plus ensure version" - } - } } tasks.withType(GroovyCompile) { @@ -36,13 +23,6 @@ allprojects { } } -dependencyManagement { - imports { - mavenBom "org.grails:grails-bom:$grailsVersion" - } - applyMavenExclusions false -} - grailsPublish { userOrg = 'grails' githubSlug = 'grails/redis' diff --git a/examples/redis-demo/grails-app/conf/logback.xml b/examples/redis-demo/grails-app/conf/logback-spring.xml similarity index 100% rename from examples/redis-demo/grails-app/conf/logback.xml rename to examples/redis-demo/grails-app/conf/logback-spring.xml diff --git a/plugin/grails-app/conf/logback.xml b/plugin/grails-app/conf/logback-spring.xml similarity index 100% rename from plugin/grails-app/conf/logback.xml rename to plugin/grails-app/conf/logback-spring.xml diff --git a/plugin/src/main/groovy/redis/RedisGrailsPlugin.groovy b/plugin/src/main/groovy/redis/RedisGrailsPlugin.groovy index bf4e0fa..1872099 100644 --- a/plugin/src/main/groovy/redis/RedisGrailsPlugin.groovy +++ b/plugin/src/main/groovy/redis/RedisGrailsPlugin.groovy @@ -10,7 +10,7 @@ import redis.clients.jedis.Protocol class RedisGrailsPlugin extends Plugin { - def grailsVersion = "7.0.0 > *" + def grailsVersion = "7.0.0-SNAPSHOT > *" def pluginExcludes = [ "codenarc.properties", "grails-app/conf/**",