saml2-service-provider-opensaml3.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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(':saml2-service-provider-core')
  34. api("org.opensaml:opensaml-core")
  35. api("org.opensaml:opensaml-saml-api")
  36. api("org.opensaml:opensaml-saml-impl")
  37. provided 'javax.servlet:javax.servlet-api'
  38. testImplementation 'com.squareup.okhttp3:mockwebserver'
  39. testImplementation project(path : ':saml2-service-provider-core', configuration : 'tests')
  40. }