2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "java"
|
|
|
|
|
id "org.springframework.boot.conventions"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot SAML 2 service provider smoke test"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 06:09:17 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
2022-10-08 12:52:30 +08:00
|
|
|
implementation("org.opensaml:opensaml-core:4.0.1")
|
|
|
|
|
implementation("org.opensaml:opensaml-saml-api:4.0.1")
|
|
|
|
|
implementation("org.opensaml:opensaml-saml-impl:4.0.1")
|
2020-01-23 06:09:17 +08:00
|
|
|
implementation("org.springframework.security:spring-security-config")
|
2022-10-08 12:52:30 +08:00
|
|
|
implementation("org.springframework.security:spring-security-saml2-service-provider") {
|
|
|
|
|
exclude group: "org.opensaml", module: "opensaml-core"
|
|
|
|
|
exclude group: "org.opensaml", module: "opensaml-saml-api"
|
|
|
|
|
exclude group: "org.opensaml", module: "opensaml-saml-impl"
|
|
|
|
|
}
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
2022-09-21 20:21:53 +08:00
|
|
|
testImplementation("org.apache.httpcomponents.client5:httpclient5")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|