mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-21 22:05:48 +00:00
This was largely generated from the following script
wget bd9f8eb541/src/main/groovy/io/spring/gradle/convention/DependencySetPlugin.groovy
./dsp.gradle
cat gradle/dependency-management.gradle | grep 'management "' | cut -d ':' -f 2 | xargs -I{} sh -c "rg {} -l -g '*.gradle' -g '\!dependency-management.gradle' > /dev/null || echo {}" | xargs -I{} sed -iE '/.*{}.*/d' gradle/dependency-management.gradle
rm ./dps.gradle
Fixes gh-7787
88 lines
3.4 KiB
Groovy
88 lines
3.4 KiB
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
apply plugin: 'trang'
|
|
|
|
dependencies {
|
|
// NB: Don't add other compile time dependencies to the config module as this breaks tooling
|
|
compile project(':spring-security-core')
|
|
compile 'org.springframework:spring-aop'
|
|
compile 'org.springframework:spring-beans'
|
|
compile 'org.springframework:spring-context'
|
|
compile 'org.springframework:spring-core'
|
|
|
|
optional project(':spring-security-ldap')
|
|
optional project(':spring-security-messaging')
|
|
optional project(':spring-security-saml2-service-provider')
|
|
optional project(':spring-security-oauth2-client')
|
|
optional project(':spring-security-oauth2-jose')
|
|
optional project(':spring-security-oauth2-resource-server')
|
|
optional project(':spring-security-openid')
|
|
optional project(':spring-security-rsocket')
|
|
optional project(':spring-security-web')
|
|
optional 'io.projectreactor:reactor-core'
|
|
optional 'org.aspectj:aspectjweaver'
|
|
optional 'org.springframework:spring-jdbc'
|
|
optional 'org.springframework:spring-messaging'
|
|
optional 'org.springframework:spring-tx'
|
|
optional 'org.springframework:spring-webmvc'
|
|
optional'org.springframework:spring-web'
|
|
optional'org.springframework:spring-webflux'
|
|
optional'org.springframework:spring-websocket'
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
testCompile project(':spring-security-aspects')
|
|
testCompile project(':spring-security-cas')
|
|
testCompile project(':spring-security-test')
|
|
testCompile project(path : ':spring-security-core', configuration : 'tests')
|
|
testCompile project(path : ':spring-security-oauth2-client', configuration : 'tests')
|
|
testCompile project(path : ':spring-security-oauth2-resource-server', configuration : 'tests')
|
|
testCompile project(path : ':spring-security-web', configuration : 'tests')
|
|
testCompile apachedsDependencies
|
|
testCompile powerMock2Dependencies
|
|
testCompile spockDependencies
|
|
testCompile 'com.squareup.okhttp3:mockwebserver'
|
|
testCompile 'ch.qos.logback:logback-classic'
|
|
testCompile 'io.projectreactor.netty:reactor-netty'
|
|
testCompile 'io.rsocket:rsocket-transport-netty'
|
|
testCompile 'javax.annotation:jsr250-api:1.0'
|
|
testCompile 'javax.xml.bind:jaxb-api'
|
|
testCompile 'ldapsdk:ldapsdk:4.1'
|
|
testCompile('net.sourceforge.htmlunit:htmlunit') {
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
}
|
|
testCompile 'org.codehaus.groovy:groovy-all'
|
|
testCompile 'org.eclipse.persistence:javax.persistence'
|
|
testCompile 'org.hibernate:hibernate-entitymanager'
|
|
testCompile 'org.hsqldb:hsqldb'
|
|
testCompile ('org.openid4java:openid4java-nodeps') {
|
|
exclude group: 'com.google.code.guice', module: 'guice'
|
|
}
|
|
testCompile('org.seleniumhq.selenium:htmlunit-driver') {
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
}
|
|
testCompile('org.seleniumhq.selenium:selenium-java') {
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
exclude group: 'io.netty', module: 'netty'
|
|
}
|
|
testCompile 'org.slf4j:jcl-over-slf4j'
|
|
testCompile 'org.springframework.ldap:spring-ldap-core'
|
|
testCompile 'org.springframework:spring-expression'
|
|
testCompile 'org.springframework:spring-jdbc'
|
|
testCompile 'org.springframework:spring-orm'
|
|
testCompile 'org.springframework:spring-tx'
|
|
testCompile ('org.springframework.data:spring-data-jpa') {
|
|
exclude group: 'org.aspectj', module: 'aspectjrt'
|
|
}
|
|
|
|
testRuntime 'org.hsqldb:hsqldb'
|
|
}
|
|
|
|
|
|
rncToXsd {
|
|
rncDir = file('src/main/resources/org/springframework/security/config/')
|
|
xsdDir = rncDir
|
|
xslFile = new File(rncDir, 'spring-security.xsl')
|
|
}
|
|
|
|
build.dependsOn rncToXsd
|