build.gradle 759 B

1234567891011121314151617181920212223242526
  1. plugins {
  2. id 'org.springframework.boot' version '3.0.0-M1'
  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. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-security'
  14. implementation 'org.springframework.boot:spring-boot-starter-webflux'
  15. testImplementation 'io.projectreactor:reactor-test'
  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. outputs.upToDateWhen { false }
  22. }