build.gradle 1.3 KB

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