mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-05-03 03:45:28 +01:00
dd6fc48dd8
The build now uses spring build conventions to simplify the build Fixes gh-4284
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'
|
|
}
|