samples-demo-client.gradle 939 B

123456789101112131415161718192021222324252627282930
  1. plugins {
  2. id "org.springframework.boot" version "3.2.2"
  3. id "io.spring.dependency-management" version "1.1.0"
  4. id "java"
  5. }
  6. group = project.rootProject.group
  7. version = project.rootProject.version
  8. java {
  9. sourceCompatibility = JavaVersion.VERSION_17
  10. }
  11. repositories {
  12. mavenCentral()
  13. maven { url "https://repo.spring.io/milestone" }
  14. }
  15. dependencies {
  16. implementation "org.springframework.boot:spring-boot-starter-web"
  17. implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
  18. implementation "org.springframework.boot:spring-boot-starter-security"
  19. implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
  20. implementation "org.springframework:spring-webflux"
  21. implementation "io.projectreactor.netty:reactor-netty"
  22. implementation "org.webjars:webjars-locator-core"
  23. implementation "org.webjars:bootstrap:5.2.3"
  24. implementation "org.webjars:popper.js:2.9.3"
  25. implementation "org.webjars:jquery:3.6.4"
  26. }