diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2016-12-08 04:26:05 +0100 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2016-12-08 04:27:05 +0100 |
commit | b6c8700dfc0db6a3fe48bb6c7c7f76182660e56e (patch) | |
tree | 6dfd56385c0de0f67108c91aad1f3e24eac7e025 | |
parent | Add background image to the resources (diff) | |
download | seven-wonders-b6c8700dfc0db6a3fe48bb6c7c7f76182660e56e.tar.gz seven-wonders-b6c8700dfc0db6a3fe48bb6c7c7f76182660e56e.tar.bz2 seven-wonders-b6c8700dfc0db6a3fe48bb6c7c7f76182660e56e.zip |
Clean gradle build
-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 |