From f66cbee82f0c4b42cd8326acbe46aee4569b0358 Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Tue, 4 Sep 2018 09:41:18 -0700 Subject: [PATCH] [NOJIRA] Added swagger-ui to the backend build. For devs: access via http://localhost:8080/swagger-ui.html --- backend/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/build.gradle b/backend/build.gradle index 2ffd807f7..e6cf12818 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -99,6 +99,7 @@ dependencies { //Swagger compile 'io.springfox:springfox-swagger2:2.9.2' + compile 'io.springfox:springfox-swagger-ui:2.9.2' testCompile "org.springframework.boot:spring-boot-starter-test" testCompile "org.spockframework:spock-core:1.1-groovy-2.4" @@ -206,4 +207,4 @@ jacocoTestReport { csv.enabled = false html.destination = file("${buildDir}/jacocoHtml") } -} \ No newline at end of file +}