Skip to content

Commit 8375910

Browse files
authored
Merge pull request #1192 from jdaugherty/7.0.x
#1191 - use the jakarta version of ehcache
2 parents 55b24d0 + 87c4dad commit 8375910

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

plugin-acl/plugin/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ dependencies {
6161
testImplementation "org.apache.grails:grails-testing-support-datamapping"
6262
testImplementation "org.apache.grails:grails-testing-support-web"
6363

64-
implementation 'org.ehcache:ehcache'
64+
implementation 'org.ehcache:ehcache', {
65+
capabilities {
66+
requireCapability('org.ehcache:ehcache-jakarta')
67+
}
68+
}
6569

6670
api project(':core-plugin')
6771
api 'org.springframework.security:spring-security-acl'

plugin-core/plugin/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ dependencies {
5959
api 'org.springframework:spring-web'
6060

6161
implementation 'org.apache.commons:commons-text'
62-
implementation "org.ehcache:ehcache"
62+
implementation "org.ehcache:ehcache", {
63+
capabilities {
64+
requireCapability('org.ehcache:ehcache-jakarta')
65+
}
66+
}
6367
implementation 'org.apache.grails.bootstrap:grails-bootstrap'
6468
implementation 'org.apache.grails:grails-rest-transforms'
6569
implementation 'org.apache.grails:grails-converters'

0 commit comments

Comments
 (0)