2009-12-05 05:33:17 +08:00
|
|
|
// Config Module build file
|
|
|
|
|
2010-03-27 08:07:59 +08:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
2010-01-11 07:31:23 +08:00
|
|
|
compileTestJava.dependsOn(':spring-security-core:compileTestJava')
|
2009-12-05 05:33:17 +08:00
|
|
|
|
|
|
|
dependencies {
|
2010-01-11 07:31:23 +08:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-web'),
|
2009-12-22 01:32:38 +08:00
|
|
|
"org.aspectj:aspectjweaver:$aspectjVersion",
|
2010-04-01 05:37:22 +08:00
|
|
|
'aopalliance:aopalliance:1.0',
|
2009-12-05 05:33:17 +08:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
2010-03-08 05:58:25 +08:00
|
|
|
"org.springframework:spring-web:$springVersion",
|
2010-03-27 02:05:28 +08:00
|
|
|
"org.springframework:spring-beans:$springVersion"
|
2009-12-05 05:33:17 +08:00
|
|
|
|
2010-03-08 05:58:25 +08:00
|
|
|
provided "javax.servlet:servlet-api:2.5"
|
|
|
|
|
2010-06-04 06:13:28 +08:00
|
|
|
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '1.7.2'
|
2010-03-27 08:07:59 +08:00
|
|
|
|
2010-01-11 07:31:23 +08:00
|
|
|
testCompile project(':spring-security-ldap'),
|
|
|
|
project(':spring-security-openid'),
|
2010-03-27 08:07:59 +08:00
|
|
|
'org.openid4java:openid4java-nodeps:0.9.5',
|
2010-01-11 07:31:23 +08:00
|
|
|
files(this.project(':spring-security-core').sourceSets.test.classesDir),
|
2009-12-22 01:32:38 +08:00
|
|
|
'javax.annotation:jsr250-api:1.0',
|
|
|
|
"org.springframework.ldap:spring-ldap-core:$springLdapVersion",
|
2010-03-27 02:05:28 +08:00
|
|
|
"org.springframework:spring-jdbc:$springVersion",
|
2010-03-27 08:07:59 +08:00
|
|
|
"org.springframework:spring-tx:$springVersion",
|
2010-07-27 09:16:39 +08:00
|
|
|
'org.spockframework:spock-core:0.4-groovy-1.7',
|
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion"
|
2009-12-05 05:33:17 +08:00
|
|
|
|
2010-04-01 05:37:22 +08:00
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion",
|
|
|
|
"cglib:cglib-nodep:2.2"
|
2010-02-27 08:41:16 +08:00
|
|
|
}
|