summaryrefslogtreecommitdiff
path: root/backend/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'backend/build.gradle')
-rw-r--r--backend/build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/backend/build.gradle b/backend/build.gradle
index f1abff02..612c32c7 100644
--- a/backend/build.gradle
+++ b/backend/build.gradle
@@ -24,6 +24,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.springframework.boot:spring-boot-starter-websocket'
compile 'org.springframework.security:spring-security-core:4.2.0.RELEASE'
@@ -49,4 +51,4 @@ jar {
}
// make sure we build the frontend before creating the jar
-jar.dependsOn(':frontend:assemble') \ No newline at end of file
+jar.dependsOn(':frontend:assemble')
bgstack15