build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. alias(libs.plugins.org.springframework.boot)
  3. alias(libs.plugins.io.spring.dependency.management)
  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. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
  14. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  15. implementation 'org.springframework.boot:spring-boot-starter-web'
  16. implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
  17. testImplementation 'org.springframework.boot:spring-boot-starter-restclient'
  18. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  19. testImplementation 'org.springframework.boot:spring-boot-webmvc-test'
  20. testImplementation 'org.springframework.boot:spring-boot-security-test'
  21. testImplementation 'org.springframework.security:spring-security-test'
  22. testImplementation 'com.squareup.okhttp3:mockwebserver:5.1.0'
  23. }
  24. tasks.withType(Test).configureEach {
  25. useJUnitPlatform()
  26. }