build.gradle 694 B

123456789101112131415161718192021222324
  1. plugins {
  2. id 'org.springframework.boot' version '2.4.0'
  3. id 'io.spring.dependency-management' version '1.0.10.RELEASE'
  4. id "nebula.integtest" version "7.0.9"
  5. id 'java'
  6. }
  7. repositories {
  8. mavenCentral()
  9. maven { url "https://repo.spring.io/snapshot" }
  10. }
  11. dependencies {
  12. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  13. implementation 'org.springframework.boot:spring-boot-starter-security'
  14. implementation 'org.springframework.boot:spring-boot-starter-webflux'
  15. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  16. testImplementation 'org.springframework.security:spring-security-test'
  17. }
  18. tasks.withType(Test).configureEach {
  19. useJUnitPlatform()
  20. }