Skip to content

Commit a0650e8

Browse files
committed
Streamline ehcache dependency and upgrade Spring Security
Depend upon ehcache-core rather than ehcache, thereby removing the need for the exclusion of ehcache-terracotta. Upgrade to Spring Security 3.2.3 (the 3.2.x line uses ehcache-core)
1 parent 35b5ad3 commit a0650e8

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

build.gradle

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,11 +221,8 @@ project('spring-ws-security') {
221221
compile("org.springframework:spring-tx:$springVersion")
222222

223223
// Spring Security
224-
compile("org.springframework.security:spring-security-core:3.1.0.RELEASE")
225-
compile("net.sf.ehcache:ehcache:2.6.3") {
226-
optional
227-
exclude group: 'net.sf.ehcache', module: 'ehcache-terracotta'
228-
}
224+
compile("org.springframework.security:spring-security-core:3.2.3.RELEASE")
225+
compile("net.sf.ehcache:ehcache-core:2.6.9", optional)
229226

230227
// WS-Security
231228
compile("com.sun.xml.wss:xws-security:3.0") {

0 commit comments

Comments
 (0)