diff options
-rw-r--r-- | build.gradle | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle index 478d3f5f..bb64b9a0 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE") + classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE' } } @@ -21,12 +21,14 @@ repositories { } dependencies { - compile("org.springframework.boot:spring-boot-starter-websocket") - compile("org.webjars:webjars-locator") - 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") + compile 'com.google.code.gson:gson:2.8.0' - testCompile("org.springframework.boot:spring-boot-starter-test") + compile 'org.springframework.boot:spring-boot-starter-websocket' + compile 'org.webjars:webjars-locator' + 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' }
\ No newline at end of file |