1234567891011121314151617181920212223242526 |
- 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"
- }
|