build.gradle 633 B

123456789101112131415161718192021222324
  1. plugins {
  2. id 'org.springframework.boot' version '2.7.12'
  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/milestone" }
  10. maven { url "https://repo.spring.io/snapshot" }
  11. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  14. implementation 'org.springframework.boot:spring-boot-starter-webflux'
  15. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  16. }
  17. tasks.withType(Test).configureEach {
  18. useJUnitPlatform()
  19. outputs.upToDateWhen { false }
  20. }