build.gradle 995 B

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. id 'org.springframework.boot' version '3.1.3'
  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. }
  12. ext["micrometer.version"] = "1.10.0-SNAPSHOT"
  13. dependencies {
  14. implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
  15. implementation 'org.springframework:spring-webflux'
  16. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  17. implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
  18. implementation 'io.projectreactor.netty:reactor-netty'
  19. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  20. testImplementation 'org.springframework.security:spring-security-test'
  21. testImplementation 'com.squareup.okhttp3:mockwebserver'
  22. }
  23. tasks.withType(Test).configureEach {
  24. useJUnitPlatform()
  25. outputs.upToDateWhen { false }
  26. }