Skip to content

Commit

Permalink
Grails 156 (#3)
Browse files Browse the repository at this point in the history
* grails-156: Update H2 version to latest

* grails-156: Fix Comments from Code Review
  • Loading branch information
amondel2 authored Oct 18, 2024
1 parent df8c7fc commit 767557c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 21 deletions.
20 changes: 0 additions & 20 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -36,13 +23,6 @@ allprojects {
}
}

dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
}
applyMavenExclusions false
}

grailsPublish {
userOrg = 'grails'
githubSlug = 'grails/redis'
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion plugin/src/main/groovy/redis/RedisGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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/**",
Expand Down

0 comments on commit 767557c

Please sign in to comment.