2009-12-04 16:33:17 -05:00
|
|
|
// Config Module build file
|
|
|
|
|
2010-03-26 20:07:59 -04:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
2010-01-10 18:31:23 -05:00
|
|
|
compileTestJava.dependsOn(':spring-security-core:compileTestJava')
|
2011-05-11 00:23:13 -04:00
|
|
|
|
2010-08-17 21:32:43 -04:00
|
|
|
configurations {
|
|
|
|
// GRADLE-1124
|
2010-08-19 17:41:51 -04:00
|
|
|
compile.extendsFrom = []
|
2010-08-17 21:32:43 -04:00
|
|
|
testCompile.extendsFrom groovy
|
|
|
|
}
|
|
|
|
|
2009-12-04 16:33:17 -05:00
|
|
|
dependencies {
|
2011-04-29 09:04:32 -04:00
|
|
|
// NB: Don't add other compile time dependencies to the config module as this breaks tooling
|
2010-01-10 18:31:23 -05:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-web'),
|
2009-12-21 12:32:38 -05:00
|
|
|
"org.aspectj:aspectjweaver:$aspectjVersion",
|
2010-03-31 17:37:22 -04:00
|
|
|
'aopalliance:aopalliance:1.0',
|
2009-12-04 16:33:17 -05:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
2010-03-07 16:58:25 -05:00
|
|
|
"org.springframework:spring-web:$springVersion",
|
2010-03-26 14:05:28 -04:00
|
|
|
"org.springframework:spring-beans:$springVersion"
|
2009-12-04 16:33:17 -05:00
|
|
|
|
2012-11-28 18:56:03 -05:00
|
|
|
provided "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
|
2010-03-07 16:58:25 -05:00
|
|
|
|
2012-08-31 16:49:28 -04:00
|
|
|
groovy 'org.codehaus.groovy:groovy:1.8.7'
|
2010-03-26 20:07:59 -04:00
|
|
|
|
2010-01-10 18:31:23 -05:00
|
|
|
testCompile project(':spring-security-ldap'),
|
|
|
|
project(':spring-security-openid'),
|
2012-06-29 13:59:22 -04:00
|
|
|
project(':spring-security-core').sourceSets.test.output,
|
2009-12-21 12:32:38 -05:00
|
|
|
'javax.annotation:jsr250-api:1.0',
|
|
|
|
"org.springframework.ldap:spring-ldap-core:$springLdapVersion",
|
2011-05-19 18:50:35 -04:00
|
|
|
"org.springframework:spring-expression:$springVersion",
|
2010-03-26 14:05:28 -04:00
|
|
|
"org.springframework:spring-jdbc:$springVersion",
|
2010-03-26 20:07:59 -04:00
|
|
|
"org.springframework:spring-tx:$springVersion",
|
2012-08-31 16:49:28 -04:00
|
|
|
'org.spockframework:spock-core:0.6-groovy-1.8',
|
2011-12-29 23:26:08 -05:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
2012-11-08 23:25:18 -05:00
|
|
|
powerMockDependencies
|
2011-05-11 00:17:36 -04:00
|
|
|
testCompile('org.openid4java:openid4java-nodeps:0.9.6') {
|
2011-04-29 09:04:32 -04:00
|
|
|
exclude group: 'com.google.code.guice', module: 'guice'
|
|
|
|
}
|
|
|
|
|
2009-12-04 16:33:17 -05:00
|
|
|
|
2010-03-31 17:37:22 -04:00
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion",
|
|
|
|
"cglib:cglib-nodep:2.2"
|
2011-02-14 14:03:08 -05:00
|
|
|
}
|
|
|
|
|
2011-11-11 09:00:53 -05:00
|
|
|
test {
|
|
|
|
inputs.file file("$rootDir/docs/manual/src/docbook/appendix-namespace.xml")
|
|
|
|
}
|
|
|
|
|
2011-02-14 14:03:08 -05:00
|
|
|
integrationTest {
|
|
|
|
systemProperties['apacheDSWorkDir'] = "${buildDir}/apacheDSWork"
|
|
|
|
}
|