2009-12-04 16:33:17 -05:00
|
|
|
// Config Module build file
|
|
|
|
|
|
|
|
compileTestJava.dependsOn(':core:compileTestJava')
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':core'),
|
|
|
|
project(':web'),
|
|
|
|
"javax.servlet:servlet-api:2.5",
|
2009-12-21 12:32:38 -05:00
|
|
|
"org.aspectj:aspectjweaver:$aspectjVersion",
|
2009-12-04 16:33:17 -05: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"
|
|
|
|
|
|
|
|
testCompile project(':ldap'),
|
|
|
|
project(':openid'),
|
|
|
|
files(this.project(':core').sourceSets.test.classesDir),
|
2009-12-21 12:32:38 -05:00
|
|
|
'javax.annotation:jsr250-api:1.0',
|
2009-12-04 16:33:17 -05:00
|
|
|
'aopalliance:aopalliance:1.0',
|
2009-12-21 12:32:38 -05:00
|
|
|
"org.springframework.ldap:spring-ldap-core:$springLdapVersion",
|
2009-12-04 16:33:17 -05:00
|
|
|
"org.springframework:spring-jdbc:$springVersion"
|
|
|
|
}
|
|
|
|
|
|
|
|
task show << {
|
|
|
|
println dependencies
|
|
|
|
}
|