2009-12-04 21:33:17 +00:00
|
|
|
// Config Module build file
|
|
|
|
|
2010-01-10 23:31:23 +00:00
|
|
|
compileTestJava.dependsOn(':spring-security-core:compileTestJava')
|
2009-12-04 21:33:17 +00:00
|
|
|
|
|
|
|
dependencies {
|
2010-01-10 23:31:23 +00:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-web'),
|
2009-12-04 21:33:17 +00:00
|
|
|
"javax.servlet:servlet-api:2.5",
|
2009-12-21 17:32:38 +00:00
|
|
|
"org.aspectj:aspectjweaver:$aspectjVersion",
|
2009-12-04 21:33:17 +00:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"org.springframework:spring-core:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
|
|
|
"org.springframework:spring-web:$springVersion",
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-tx:$springVersion"
|
|
|
|
|
2010-01-10 23:31:23 +00:00
|
|
|
testCompile project(':spring-security-ldap'),
|
|
|
|
project(':spring-security-openid'),
|
|
|
|
files(this.project(':spring-security-core').sourceSets.test.classesDir),
|
2009-12-21 17:32:38 +00:00
|
|
|
'javax.annotation:jsr250-api:1.0',
|
2009-12-04 21:33:17 +00:00
|
|
|
'aopalliance:aopalliance:1.0',
|
2009-12-21 17:32:38 +00:00
|
|
|
"org.springframework.ldap:spring-ldap-core:$springLdapVersion",
|
2009-12-04 21:33:17 +00:00
|
|
|
"org.springframework:spring-jdbc:$springVersion"
|
|
|
|
}
|
|
|
|
|
|
|
|
task show << {
|
|
|
|
println dependencies
|
|
|
|
}
|