18 lines
499 B
Groovy
18 lines
499 B
Groovy
apply plugin: 'io.spring.convention.spring-sample-war'
|
|
|
|
dependencies {
|
|
compile project(':spring-security-acl')
|
|
compile project(':spring-security-core')
|
|
compile 'org.springframework:spring-beans'
|
|
compile 'org.springframework:spring-jdbc'
|
|
compile 'org.springframework:spring-tx'
|
|
|
|
optional 'net.sf.ehcache:ehcache'
|
|
|
|
runtime project(':spring-security-config')
|
|
runtime 'org.hsqldb:hsqldb'
|
|
runtime 'org.springframework:spring-context-support'
|
|
|
|
testCompile 'org.springframework:spring-context'
|
|
}
|