build.gradle 867 B

123456789101112131415161718192021222324252627282930313233343536
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.4.RELEASE")
  7. }
  8. }
  9. apply plugin: 'java'
  10. apply plugin: 'eclipse'
  11. apply plugin: 'org.springframework.boot'
  12. apply plugin: 'io.spring.dependency-management'
  13. bootJar {
  14. baseName = 'gs-messaging-stomp-websocket'
  15. version = '0.1.0'
  16. }
  17. sourceCompatibility = 1.8
  18. targetCompatibility = 1.8
  19. repositories {
  20. mavenCentral()
  21. }
  22. dependencies {
  23. compile("org.springframework.boot:spring-boot-starter-websocket")
  24. compile("org.webjars:webjars-locator-core")
  25. compile("org.webjars:sockjs-client:1.0.2")
  26. compile("org.webjars:stomp-websocket:2.3.3")
  27. compile("org.webjars:bootstrap:3.3.7")
  28. compile("org.webjars:jquery:3.1.0")
  29. testCompile("org.springframework.boot:spring-boot-starter-test")
  30. }