build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. plugins {
  2. id 'org.springframework.boot' version '2.5.2'
  3. id 'io.spring.dependency-management' version '1.0.10.RELEASE'
  4. id "nebula.integtest" version "8.2.0"
  5. id 'java'
  6. }
  7. repositories {
  8. mavenCentral()
  9. maven { url "https://repo.spring.io/snapshot" }
  10. maven { url "https://build.shibboleth.net/nexus/content/repositories/releases/" }
  11. }
  12. dependencies {
  13. constraints {
  14. implementation "org.opensaml:opensaml-core:4.1.1"
  15. implementation "org.opensaml:opensaml-saml-api:4.1.1"
  16. implementation "org.opensaml:opensaml-saml-impl:4.1.1"
  17. }
  18. implementation 'org.springframework.boot:spring-boot-starter-security'
  19. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  20. implementation 'org.springframework.boot:spring-boot-starter-web'
  21. implementation 'org.springframework.security:spring-security-saml2-service-provider'
  22. implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  23. testImplementation 'net.sourceforge.htmlunit:htmlunit'
  24. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  25. testImplementation 'org.springframework.security:spring-security-test'
  26. }
  27. tasks.withType(Test).configureEach {
  28. useJUnitPlatform()
  29. outputs.upToDateWhen { false }
  30. }