You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.3 KiB
26 lines
1.3 KiB
dependencies { |
|
compile project(':spring-security-core'), |
|
'aopalliance:aopalliance:1.0', |
|
"org.springframework:spring-aop:$springVersion", |
|
"org.springframework:spring-beans:$springVersion", |
|
"org.springframework:spring-context:$springVersion", |
|
"org.springframework:spring-expression:$springVersion", |
|
"org.springframework:spring-jdbc:$springVersion", |
|
"org.springframework:spring-tx:$springVersion", |
|
"org.springframework:spring-web:$springVersion" |
|
|
|
provided 'javax.servlet:servlet-api:2.5' |
|
|
|
testCompile project(':spring-security-core').sourceSets.test.output, |
|
'commons-codec:commons-codec:1.3', |
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion", |
|
"org.springframework:spring-test:$springVersion", |
|
"org.powermock:powermock-core:$powerMockVersion", |
|
"org.powermock:powermock-api-support:$powerMockVersion", |
|
"org.powermock:powermock-module-junit4-common:$powerMockVersion", |
|
"org.powermock:powermock-module-junit4:$powerMockVersion", |
|
"org.powermock:powermock-api-mockito:$powerMockVersion", |
|
"org.powermock:powermock-reflect:$powerMockVersion" |
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion" |
|
}
|
|
|