summaryrefslogtreecommitdiff
path: root/backend/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'backend/build.gradle')
-rw-r--r--backend/build.gradle6
1 files changed, 4 insertions, 2 deletions
diff --git a/backend/build.gradle b/backend/build.gradle
index 487f3240..5ef36783 100644
--- a/backend/build.gradle
+++ b/backend/build.gradle
@@ -24,8 +24,10 @@ dependencies {
compile 'org.springframework.security:spring-security-core:4.2.0.RELEASE'
compile 'com.google.code.gson:gson:2.8.0'
compile 'ch.qos.logback:logback-classic:1.1.8'
- compile 'org.hildan.livedoc:livedoc-springboot:3.0.0'
- compile 'org.hildan.livedoc:livedoc-ui-webjar:3.0.0'
+ compile 'org.hildan.livedoc:livedoc-springboot:4.3.2'
+ compile 'org.hildan.livedoc:livedoc-ui-webjar:4.3.2'
+
+ annotationProcessor 'org.hildan.livedoc:livedoc-javadoc-processor:4.3.2'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'org.hildan.jackstomp:jackstomp:1.1.0'
bgstack15