2009-12-04 21:33:17 +00:00
|
|
|
// Config Module build file
|
|
|
|
|
2010-03-27 00:07:59 +00:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
2010-01-10 23:31:23 +00:00
|
|
|
compileTestJava.dependsOn(':spring-security-core:compileTestJava')
|
2011-05-10 23:23:13 -05:00
|
|
|
|
2010-08-18 02:32:43 +01:00
|
|
|
configurations {
|
|
|
|
// GRADLE-1124
|
2010-08-19 22:41:51 +01:00
|
|
|
compile.extendsFrom = []
|
2010-08-18 02:32:43 +01:00
|
|
|
testCompile.extendsFrom groovy
|
|
|
|
}
|
|
|
|
|
2009-12-04 21:33:17 +00:00
|
|
|
dependencies {
|
2011-04-29 14:04:32 +01:00
|
|
|
// NB: Don't add other compile time dependencies to the config module as this breaks tooling
|
2010-01-10 23:31:23 +00:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-web'),
|
2009-12-21 17:32:38 +00:00
|
|
|
"org.aspectj:aspectjweaver:$aspectjVersion",
|
2010-03-31 22:37:22 +01:00
|
|
|
'aopalliance:aopalliance:1.0',
|
2009-12-04 21:33:17 +00:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
2010-03-07 21:58:25 +00:00
|
|
|
"org.springframework:spring-web:$springVersion",
|
2010-03-26 18:05:28 +00:00
|
|
|
"org.springframework:spring-beans:$springVersion"
|
2009-12-04 21:33:17 +00:00
|
|
|
|
2010-03-07 21:58:25 +00:00
|
|
|
provided "javax.servlet:servlet-api:2.5"
|
|
|
|
|
2011-02-14 19:03:08 +00:00
|
|
|
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '1.7.7'
|
2010-03-27 00:07:59 +00:00
|
|
|
|
2010-01-10 23:31:23 +00:00
|
|
|
testCompile project(':spring-security-ldap'),
|
|
|
|
project(':spring-security-openid'),
|
2010-08-05 02:11:00 +01:00
|
|
|
project(':spring-security-core').sourceSets.test.classes,
|
2009-12-21 17:32:38 +00:00
|
|
|
'javax.annotation:jsr250-api:1.0',
|
|
|
|
"org.springframework.ldap:spring-ldap-core:$springLdapVersion",
|
2010-03-26 18:05:28 +00:00
|
|
|
"org.springframework:spring-jdbc:$springVersion",
|
2010-03-27 00:07:59 +00:00
|
|
|
"org.springframework:spring-tx:$springVersion",
|
2011-02-14 19:03:08 +00:00
|
|
|
'org.spockframework:spock-core:0.5-groovy-1.7',
|
2010-07-27 02:16:39 +01:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion"
|
2011-05-10 23:17:36 -05:00
|
|
|
testCompile('org.openid4java:openid4java-nodeps:0.9.6') {
|
2011-04-29 14:04:32 +01:00
|
|
|
exclude group: 'com.google.code.guice', module: 'guice'
|
|
|
|
}
|
|
|
|
|
2009-12-04 21:33:17 +00:00
|
|
|
|
2010-03-31 22:37:22 +01:00
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion",
|
|
|
|
"cglib:cglib-nodep:2.2"
|
2011-02-14 19:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
integrationTest {
|
|
|
|
systemProperties['apacheDSWorkDir'] = "${buildDir}/apacheDSWork"
|
|
|
|
}
|