build.gradle 935 B

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