123456789101112131415161718192021222324252627282930313233343536 |
- buildscript {
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.1.RELEASE")
- }
- }
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'org.springframework.boot'
- apply plugin: 'io.spring.dependency-management'
- jar {
- baseName = 'gs-messaging-stomp-websocket'
- version = '0.1.0'
- }
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
- repositories {
- mavenCentral()
- }
- dependencies {
- compile("org.springframework.boot:spring-boot-starter-websocket")
- compile("org.webjars:webjars-locator-core")
- compile("org.webjars:sockjs-client:1.0.2")
- compile("org.webjars:stomp-websocket:2.3.3")
- compile("org.webjars:bootstrap:3.3.7")
- compile("org.webjars:jquery:3.1.0")
- testCompile("org.springframework.boot:spring-boot-starter-test")
- }
|