13 lines
405 B
Groovy
13 lines
405 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
dependencies {
|
|
compile project(':spring-security-core')
|
|
compile 'org.springframework:spring-aop'
|
|
compile 'org.springframework:spring-beans'
|
|
compile 'org.springframework:spring-context'
|
|
compile 'org.springframework:spring-core'
|
|
compile 'org.springframework:spring-web'
|
|
|
|
testCompile project(path: ':spring-security-core', configuration: 'tests')
|
|
}
|