build.gradle 768 B

123456789101112131415161718192021222324252627282930313233343536
  1. buildscript {
  2. repositories {
  3. maven { url "http://repo.spring.io/libs-release" }
  4. mavenLocal()
  5. mavenCentral()
  6. }
  7. dependencies {
  8. classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.4.RELEASE")
  9. }
  10. }
  11. apply plugin: 'java'
  12. apply plugin: 'eclipse'
  13. apply plugin: 'idea'
  14. apply plugin: 'spring-boot'
  15. jar {
  16. baseName = 'gs-messaging-stomp-websocket'
  17. version = '0.1.0'
  18. }
  19. repositories {
  20. mavenLocal()
  21. mavenCentral()
  22. maven { url "http://repo.spring.io/libs-release" }
  23. }
  24. dependencies {
  25. compile("org.springframework.boot:spring-boot-starter-websocket")
  26. compile("org.springframework:spring-messaging")
  27. testCompile("junit:junit")
  28. }
  29. task wrapper(type: Wrapper) {
  30. gradleVersion = '1.11'
  31. }