saml2-service-provider-core.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. buildscript {
  2. repositories {
  3. maven { url 'https://repo.spring.io/plugins-release' }
  4. }
  5. dependencies {
  6. classpath 'io.spring.gradle:propdeps-plugin:0.0.10.RELEASE'
  7. }
  8. }
  9. plugins {
  10. id 'java-library'
  11. id 'io.spring.convention.repository'
  12. id 'io.spring.convention.management-configuration'
  13. id 'io.spring.convention.dependency-set'
  14. id 'io.spring.convention.checkstyle'
  15. id 'io.spring.convention.tests-configuration'
  16. id 'io.spring.convention.integration-test'
  17. id 'propdeps'
  18. }
  19. configurations {
  20. classesOnlyElements {
  21. canBeConsumed = true
  22. canBeResolved = false
  23. }
  24. }
  25. artifacts {
  26. classesOnlyElements(compileJava.destinationDir)
  27. }
  28. repositories {
  29. maven { url "https://build.shibboleth.net/nexus/content/repositories/releases/" }
  30. }
  31. dependencies {
  32. management platform(project(":spring-security-dependencies"))
  33. api project(':spring-security-core')
  34. api project(':spring-security-web')
  35. provided("org.opensaml:opensaml-core")
  36. provided("org.opensaml:opensaml-saml-api")
  37. provided("org.opensaml:opensaml-saml-impl")
  38. provided 'javax.servlet:javax.servlet-api'
  39. testImplementation 'com.squareup.okhttp3:mockwebserver'
  40. }