From 6e6d3049640afb337a790abe9cc5e5824f057902 Mon Sep 17 00:00:00 2001 From: Michael Yan Date: Sun, 5 Feb 2023 11:58:25 +0800 Subject: [PATCH] build: remove unused dependency: grails-datastore --- build.gradle | 15 +-------------- gradle.properties | 1 - 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/build.gradle b/build.gradle index df798ab5..bcc08736 100644 --- a/build.gradle +++ b/build.gradle @@ -72,20 +72,7 @@ subprojects { configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> - if( details.requested.group == 'org.grails' && - details.requested.name in ['grails-datastore-core', - 'grails-datastore-async', - 'grails-datastore-gorm', - 'grails-datastore-gorm-async', - 'grails-datastore-gorm-rx', - 'grails-datastore-gorm-support', - 'grails-datastore-gorm-tck', - 'grails-datastore-gorm-test', - 'grails-datastore-gorm-validation', - 'grails-datastore-web'] - ) { - details.useVersion(datastoreVersion) - } else if (details.requested.group == "org.springframework") { + if (details.requested.group == "org.springframework") { details.useVersion(springVersion) } else if (details.requested.group == "org.springframework.boot") { details.useVersion(springBootVersion) diff --git a/gradle.properties b/gradle.properties index 521f5794..f746b0ab 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,6 @@ projectUrl=https://github.com/grails/grails-gsp githubSlug=grails/grails-gsp githubBranch=2022.0.x developers=Graeme Rocher -datastoreVersion=7.2.2-SNAPSHOT grailsVersion=2022.0.0-SNAPSHOT groovyVersion=3.0.14 servletApiVersion=4.0.1