spring-security-saml2-service-provider.gradle 1.1 KB

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. management platform(project(":spring-security-dependencies"))
  4. api project(':spring-security-web')
  5. api "org.opensaml:opensaml-core"
  6. api ("org.opensaml:opensaml-saml-api") {
  7. exclude group: 'commons-logging', module: 'commons-logging'
  8. }
  9. api ("org.opensaml:opensaml-saml-impl") {
  10. exclude group: 'commons-logging', module: 'commons-logging'
  11. }
  12. provided 'jakarta.servlet:jakarta.servlet-api'
  13. optional 'com.fasterxml.jackson.core:jackson-databind'
  14. testImplementation 'com.squareup.okhttp3:mockwebserver'
  15. testImplementation "org.assertj:assertj-core"
  16. testImplementation "org.skyscreamer:jsonassert"
  17. testImplementation "org.junit.jupiter:junit-jupiter-api"
  18. testImplementation "org.junit.jupiter:junit-jupiter-params"
  19. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  20. testImplementation "org.mockito:mockito-core"
  21. testImplementation "org.mockito:mockito-junit-jupiter"
  22. testImplementation "org.springframework:spring-test"
  23. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  24. }