summaryrefslogtreecommitdiff
path: root/backend/build.gradle
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2017-08-13 04:16:18 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2017-08-15 00:05:55 +0200
commit3f8daeffbb298df25307b3fd422fecf88acf3de5 (patch)
tree3ef44bedc32959aea25c87efa6d18d497b8c8a08 /backend/build.gradle
parentRemove obsolete routes.js (diff)
downloadseven-wonders-3f8daeffbb298df25307b3fd422fecf88acf3de5.tar.gz
seven-wonders-3f8daeffbb298df25307b3fd422fecf88acf3de5.tar.bz2
seven-wonders-3f8daeffbb298df25307b3fd422fecf88acf3de5.zip
Move from JsonDoc to Livedoc
The Livedoc project, based on JsonDoc, implements the overrides that we used to make in this project for websocket compatibility.
Diffstat (limited to 'backend/build.gradle')
-rw-r--r--backend/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/build.gradle b/backend/build.gradle
index 5193f0cb..6e728b12 100644
--- a/backend/build.gradle
+++ b/backend/build.gradle
@@ -18,8 +18,8 @@ repositories {
dependencies {
compile 'com.google.code.gson:gson:2.8.0'
compile 'ch.qos.logback:logback-classic:1.1.8'
- compile 'org.jsondoc:spring-boot-starter-jsondoc:1.2.17'
- compile 'org.jsondoc:jsondoc-ui-webjar:1.2.17'
+ compile 'org.hildan.livedoc:livedoc-springboot:0.2.0'
+ compile 'org.hildan.livedoc:livedoc-ui-webjar:0.2.0'
compile 'org.springframework.boot:spring-boot-starter-websocket'
compile 'org.springframework.security:spring-security-core:4.2.0.RELEASE'
bgstack15