build.gradle 753 B

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