build.gradle 749 B

1234567891011121314151617181920212223242526
  1. plugins {
  2. id 'io.spring.dependency-management' version '1.0.10.RELEASE'
  3. id 'org.springframework.boot' version '2.4.0'
  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. implementation 'com.j256.two-factor-auth:two-factor-auth:1.3'
  16. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  17. testImplementation 'org.springframework.security:spring-security-test'
  18. }
  19. tasks.withType(Test).configureEach {
  20. useJUnitPlatform()
  21. }