build.gradle 909 B

1234567891011121314151617181920212223242526272829
  1. plugins {
  2. id 'io.spring.dependency-management' version '1.0.11.RELEASE'
  3. id 'org.springframework.boot' version '3.0.0-M1'
  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-security'
  14. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  15. implementation 'org.springframework.boot:spring-boot-starter-web'
  16. implementation 'org.springframework.security:spring-security-crypto'
  17. implementation 'com.j256.two-factor-auth:two-factor-auth:1.3'
  18. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  19. testImplementation 'org.springframework.security:spring-security-test'
  20. }
  21. tasks.withType(Test).configureEach {
  22. useJUnitPlatform()
  23. outputs.upToDateWhen { false }
  24. }