12345678910111213141516171819202122232425262728293031323334353637 |
- buildscript {
- repositories {
- maven { url "http://repo.spring.io/libs-snapshot" }
- mavenLocal()
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6")
- }
- }
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'idea'
- apply plugin: 'spring-boot'
- jar {
- baseName = 'gs-messaging-stomp-websocket'
- version = '0.1.0'
- }
- repositories {
- mavenCentral()
- maven { url "http://repo.spring.io/libs-snapshot" }
- }
- dependencies {
- compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M6")
- compile("org.springframework.boot:spring-boot-starter-websocket:0.5.0.M6")
- compile("org.springframework:spring-messaging:4.0.0.M3")
- compile("org.projectreactor:reactor-tcp:1.0.0.RC1")
- compile("com.fasterxml.jackson.core:jackson-databind")
- testCompile("junit:junit:4.11")
- }
- task wrapper(type: Wrapper) {
- gradleVersion = '1.8'
- }
|