buildscript { repositories { maven { url "http://repo.spring.io/libs-snapshot" } mavenLocal() } } apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'idea' 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.RC1") 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' }