You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.9 KiB
71 lines
2.9 KiB
import javax.security.auth.login.ConfigurationSpi; |
|
|
|
// Config Module build file |
|
|
|
apply plugin: 'groovy' |
|
apply plugin: 'trang' |
|
|
|
compileTestJava.dependsOn(':spring-security-core:compileTestJava') |
|
|
|
dependencies { |
|
// NB: Don't add other compile time dependencies to the config module as this breaks tooling |
|
compile project(':spring-security-core'), |
|
'aopalliance:aopalliance:1.0', |
|
"org.springframework:spring-aop:$springVersion", |
|
"org.springframework:spring-context:$springVersion", |
|
"org.springframework:spring-beans:$springVersion" |
|
|
|
optional project(':spring-security-web'), |
|
project(':spring-security-ldap'), |
|
project(':spring-security-openid'), |
|
"org.springframework:spring-web:$springVersion", |
|
"org.springframework:spring-webmvc:$springVersion", |
|
"org.aspectj:aspectjweaver:$aspectjVersion" |
|
|
|
provided "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion" |
|
|
|
testCompile project(':spring-security-cas'), |
|
project(':spring-security-core').sourceSets.test.output, |
|
'javax.annotation:jsr250-api:1.0', |
|
"org.springframework.ldap:spring-ldap-core:$springLdapVersion", |
|
"org.springframework:spring-expression:$springVersion", |
|
"org.springframework:spring-jdbc:$springVersion", |
|
"org.springframework:spring-orm:$springVersion", |
|
"org.springframework:spring-tx:$springVersion", |
|
"org.spockframework:spock-core:$spockVersion", |
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion", |
|
"org.hibernate.javax.persistence:hibernate-jpa-2.0-api:1.0.1.Final", |
|
"org.hibernate:hibernate-entitymanager:4.1.0.Final", |
|
"org.codehaus.groovy:groovy-all:$groovyVersion", |
|
"org.apache.directory.server:apacheds-core:$apacheDsVersion", |
|
"org.apache.directory.server:apacheds-core-entry:$apacheDsVersion", |
|
"org.apache.directory.server:apacheds-protocol-shared:$apacheDsVersion", |
|
"org.apache.directory.server:apacheds-protocol-ldap:$apacheDsVersion", |
|
"org.apache.directory.server:apacheds-server-jndi:$apacheDsVersion", |
|
'org.apache.directory.shared:shared-ldap:0.9.15', |
|
'ldapsdk:ldapsdk:4.1', |
|
powerMockDependencies |
|
testCompile('org.openid4java:openid4java-nodeps:0.9.6') { |
|
exclude group: 'com.google.code.guice', module: 'guice' |
|
} |
|
|
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion", |
|
"cglib:cglib-nodep:2.2" |
|
} |
|
|
|
test { |
|
inputs.file file("$rootDir/docs/manual/src/docbook/appendix-namespace.xml") |
|
} |
|
|
|
integrationTest { |
|
systemProperties['apacheDSWorkDir'] = "${buildDir}/apacheDSWork" |
|
} |
|
|
|
rncToXsd { |
|
rncDir = file('src/main/resources/org/springframework/security/config/') |
|
xsdDir = rncDir |
|
xslFile = new File(rncDir, 'spring-security.xsl') |
|
} |
|
|
|
build.dependsOn rncToXsd |