build.gradle 892 B

12345678910111213141516171819202122232425262728
  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. jcenter()
  9. maven { url "https://repo.spring.io/snapshot" }
  10. }
  11. dependencies {
  12. implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
  13. implementation 'org.springframework:spring-webflux'
  14. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  15. implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  16. implementation 'io.projectreactor.netty:reactor-netty'
  17. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  18. testImplementation 'org.springframework.security:spring-security-test'
  19. testImplementation 'com.squareup.okhttp3:mockwebserver'
  20. }
  21. tasks.withType(Test).configureEach {
  22. useJUnitPlatform()
  23. outputs.upToDateWhen { false }
  24. }