samples-demo-client.gradle 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. maven { url "https://repo.spring.io/snapshot" }
  15. }
  16. dependencies {
  17. implementation "org.springframework.boot:spring-boot-starter-web"
  18. implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
  19. implementation "org.springframework.boot:spring-boot-starter-security"
  20. implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
  21. implementation "org.springframework:spring-webflux"
  22. implementation "io.projectreactor.netty:reactor-netty"
  23. implementation "org.apache.httpcomponents.client5:httpclient5"
  24. implementation "org.webjars:webjars-locator-core"
  25. implementation "org.webjars:bootstrap:5.2.3"
  26. implementation "org.webjars:popper.js:2.9.3"
  27. implementation "org.webjars:jquery:3.6.4"
  28. }