Skip to content

Commit d05390f

Browse files
committed
Disable Spring dependency management in plugins
Set springDependencyManagement to false in all plugin build.gradle files to prevent Grails from managing Spring dependencies. Also added new dependency versions (gbench, guava, nimbus, scribejava) to gradle.properties for future use.
1 parent 4875b32 commit d05390f

File tree

11 files changed

+44
-0
lines changed

11 files changed

+44
-0
lines changed

plugin-acl/plugin/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ ext {
3232
pomDevelopers = ['burtbeckwith': 'Burt Beckwith']
3333
}
3434

35+
grails {
36+
springDependencyManagement = false
37+
}
38+
3539
dependencies {
3640

3741
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-cas/plugin/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ ext {
3131
pomDevelopers = ['burtbeckwith': 'Burt Beckwith']
3232
}
3333

34+
grails {
35+
springDependencyManagement = false
36+
}
37+
3438
dependencies {
3539

3640
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-core/plugin/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ ext {
3535
]
3636
}
3737

38+
grails {
39+
springDependencyManagement = false
40+
}
41+
3842
dependencies {
3943

4044
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-ldap/plugin/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ ext {
3131
pomDevelopers = [burtbeckwith: 'Burt Beckwith']
3232
}
3333

34+
grails {
35+
springDependencyManagement = false
36+
}
37+
3438
dependencies {
3539

3640
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-oauth2/plugin/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ ext {
3737
]
3838
}
3939

40+
grails {
41+
springDependencyManagement = false
42+
}
43+
4044
dependencies {
4145

4246
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-rest/spring-security-rest-gorm/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ ext {
3535
]
3636
}
3737

38+
grails {
39+
springDependencyManagement = false
40+
}
41+
3842
dependencies {
3943

4044
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-rest/spring-security-rest-grailscache/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ ext {
3535
]
3636
}
3737

38+
grails {
39+
springDependencyManagement = false
40+
}
41+
3842
dependencies {
3943

4044
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-rest/spring-security-rest-memcached/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ ext {
3535
]
3636
}
3737

38+
grails {
39+
springDependencyManagement = false
40+
}
41+
3842
dependencies {
3943

4044
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-rest/spring-security-rest-redis/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ ext {
3535
]
3636
}
3737

38+
grails {
39+
springDependencyManagement = false
40+
}
41+
3842
dependencies {
3943

4044
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-rest/spring-security-rest/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ ext {
3535
]
3636
}
3737

38+
grails {
39+
springDependencyManagement = false
40+
}
41+
3842
dependencies {
3943

4044
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

0 commit comments

Comments
 (0)