build.gradle 948 B

1234567891011121314151617181920212223242526272829
  1. plugins {
  2. id 'org.springframework.boot' version '2.5.2'
  3. id 'io.spring.dependency-management' version '1.0.10.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-oauth2-client'
  14. implementation 'org.springframework:spring-webflux'
  15. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  16. implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  17. implementation 'io.projectreactor.netty:reactor-netty'
  18. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  19. testImplementation 'org.springframework.security:spring-security-test'
  20. testImplementation 'com.squareup.okhttp3:mockwebserver'
  21. }
  22. tasks.withType(Test).configureEach {
  23. useJUnitPlatform()
  24. outputs.upToDateWhen { false }
  25. }