build.gradle 781 B

1234567891011121314151617181920212223242526272829303132
  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.BUILD-SNAPSHOT")
  20. compile("org.springframework.boot:spring-boot-starter-websocket:0.5.0.BUILD-SNAPSHOT")
  21. compile("org.springframework:spring-messaging:4.0.0.BUILD-SNAPSHOT")
  22. compile("com.fasterxml.jackson.core:jackson-databind")
  23. testCompile("junit:junit:4.11")
  24. }
  25. task wrapper(type: Wrapper) {
  26. gradleVersion = '1.8'
  27. }