build.gradle 802 B

123456789101112131415161718192021222324252627282930313233
  1. buildscript {
  2. repositories {
  3. maven { url "http://repo.spring.io/libs-snapshot" }
  4. mavenLocal()
  5. }
  6. }
  7. apply plugin: 'java'
  8. apply plugin: 'eclipse'
  9. apply plugin: 'idea'
  10. jar {
  11. baseName = 'gs-messaging-stomp-websocket'
  12. version = '0.1.0'
  13. }
  14. repositories {
  15. mavenCentral()
  16. maven { url "http://repo.spring.io/libs-snapshot" }
  17. }
  18. dependencies {
  19. compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M6")
  20. compile("org.springframework.boot:spring-boot-starter-websocket:0.5.0.M6")
  21. compile("org.springframework:spring-messaging:4.0.0.RC1")
  22. compile("org.projectreactor:reactor-tcp:1.0.0.RC1")
  23. compile("com.fasterxml.jackson.core:jackson-databind")
  24. testCompile("junit:junit:4.11")
  25. }
  26. task wrapper(type: Wrapper) {
  27. gradleVersion = '1.8'
  28. }