build.gradle 887 B

123456789101112131415161718192021222324252627282930
  1. plugins {
  2. id 'org.springframework.boot' version '3.1.0'
  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-security'
  15. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  16. implementation 'org.springframework.boot:spring-boot-starter-web'
  17. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  18. testImplementation 'org.springframework.security:spring-security-test'
  19. integTestImplementation "org.seleniumhq.selenium:htmlunit-driver"
  20. }
  21. tasks.withType(Test).configureEach {
  22. useJUnitPlatform()
  23. outputs.upToDateWhen { false }
  24. }