Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
build: remove unused dependency: grails-datastore
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Feb 5, 2023
1 parent 7a24cc0 commit 6e6d304
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
15 changes: 1 addition & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6e6d304

Please sign in to comment.