1
0
mirror of synced 2026-05-22 21:33:16 +00:00
Files
spring-security/saml2/saml2-service-provider/spring-security-saml2-service-provider.gradle
T

30 lines
1.1 KiB
Groovy
Raw Normal View History

2019-08-13 14:45:39 -07:00
apply plugin: 'io.spring.convention.spring-module'
2021-05-17 15:51:12 -05:00
2020-12-07 12:28:19 -07:00
dependencies {
2021-10-05 11:23:29 -03:00
management platform(project(":spring-security-dependencies"))
2021-04-09 12:42:04 -06:00
api project(':spring-security-web')
2021-05-17 15:51:12 -05:00
api "org.opensaml:opensaml-core"
2021-12-10 15:15:28 -07:00
api ("org.opensaml:opensaml-saml-api") {
exclude group: 'commons-logging', module: 'commons-logging'
}
api ("org.opensaml:opensaml-saml-impl") {
exclude group: 'commons-logging', module: 'commons-logging'
}
2020-08-05 00:28:22 -06:00
2021-10-11 16:01:02 -03:00
provided 'jakarta.servlet:jakarta.servlet-api'
2021-05-17 15:51:12 -05:00
2022-02-24 23:50:09 +01:00
optional 'com.fasterxml.jackson.core:jackson-databind'
2021-05-17 15:51:12 -05:00
testImplementation 'com.squareup.okhttp3:mockwebserver'
2021-07-12 13:06:44 -05:00
testImplementation "org.assertj:assertj-core"
2022-02-24 23:50:09 +01:00
testImplementation "org.skyscreamer:jsonassert"
2021-07-12 13:06:44 -05:00
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.jupiter:junit-jupiter-params"
testImplementation "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.mockito:mockito-core"
testImplementation "org.mockito:mockito-junit-jupiter"
testImplementation "org.springframework:spring-test"
2025-03-17 14:16:44 -05:00
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2021-04-06 17:10:53 -06:00
}