build.gradle 667 B

12345678910111213141516171819202122232425262728293031323334
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.2.RELEASE")
  7. }
  8. }
  9. apply plugin: 'java'
  10. apply plugin: 'eclipse'
  11. apply plugin: 'idea'
  12. apply plugin: 'spring-boot'
  13. jar {
  14. baseName = 'gs-messaging-stomp-websocket'
  15. version = '0.1.0'
  16. }
  17. sourceCompatibility = 1.7
  18. targetCompatibility = 1.7
  19. repositories {
  20. mavenCentral()
  21. }
  22. dependencies {
  23. compile("org.springframework.boot:spring-boot-starter-websocket")
  24. compile("org.springframework:spring-messaging")
  25. testCompile("junit:junit")
  26. }
  27. task wrapper(type: Wrapper) {
  28. gradleVersion = '2.3'
  29. }