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