2019-08-13 17:45:39 -04:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
2021-05-17 16:51:12 -04:00
|
|
|
|
2020-12-07 14:28:19 -05:00
|
|
|
dependencies {
|
2021-10-05 10:23:29 -04:00
|
|
|
management platform(project(":spring-security-dependencies"))
|
2021-04-09 14:42:04 -04:00
|
|
|
api project(':spring-security-web')
|
2021-05-17 16:51:12 -04:00
|
|
|
api "org.opensaml:opensaml-core"
|
2021-12-10 17:15:28 -05: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 02:28:22 -04:00
|
|
|
|
2021-10-11 15:01:02 -04:00
|
|
|
provided 'jakarta.servlet:jakarta.servlet-api'
|
2021-05-17 16:51:12 -04:00
|
|
|
|
2022-02-24 17:50:09 -05:00
|
|
|
optional 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
|
2021-05-17 16:51:12 -04:00
|
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
2021-07-12 14:06:44 -04:00
|
|
|
testImplementation "org.assertj:assertj-core"
|
2022-02-24 17:50:09 -05:00
|
|
|
testImplementation "org.skyscreamer:jsonassert"
|
2021-07-12 14:06:44 -04: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"
|
2021-06-28 12:58:42 -04:00
|
|
|
testImplementation "org.mockito:mockito-inline"
|
2021-07-12 14:06:44 -04:00
|
|
|
testImplementation "org.mockito:mockito-junit-jupiter"
|
|
|
|
testImplementation "org.springframework:spring-test"
|
2021-04-06 19:10:53 -04:00
|
|
|
}
|