1234567891011121314151617181920212223242526272829303132333435363738 |
- buildscript {
- repositories {
- maven { url "http://repo.spring.io/libs-release" }
- mavenLocal()
- mavenCentral()
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.9.RELEASE")
- }
- }
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'idea'
- apply plugin: 'spring-boot'
- jar {
- baseName = 'gs-messaging-stomp-websocket'
- version = '0.1.0'
- }
- sourceCompatibility = 1.7
- targetCompatibility = 1.7
- repositories {
- mavenLocal()
- mavenCentral()
- maven { url "http://repo.spring.io/libs-release" }
- }
- dependencies {
- compile("org.springframework.boot:spring-boot-starter-websocket")
- compile("org.springframework:spring-messaging")
- testCompile("junit:junit")
- }
- task wrapper(type: Wrapper) {
- gradleVersion = '1.11'
- }
|