samples-messages-client.gradle 895 B

1234567891011121314151617181920212223242526
  1. plugins {
  2. id "org.springframework.boot" version "2.7.0"
  3. id "io.spring.dependency-management" version "1.0.11.RELEASE"
  4. id "java"
  5. }
  6. group = project.rootProject.group
  7. version = project.rootProject.version
  8. sourceCompatibility = "17"
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation "org.springframework.boot:spring-boot-starter-web"
  14. implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
  15. implementation "org.springframework.boot:spring-boot-starter-security"
  16. implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
  17. implementation "org.springframework:spring-webflux"
  18. implementation "io.projectreactor.netty:reactor-netty"
  19. implementation "org.thymeleaf.extras:thymeleaf-extras-springsecurity5"
  20. implementation "org.webjars:webjars-locator-core"
  21. implementation "org.webjars:bootstrap:3.4.1"
  22. implementation "org.webjars:jquery:3.4.1"
  23. }