From 1e685a9ea2c13f5de4fe72f04476701f2ff63bf4 Mon Sep 17 00:00:00 2001 From: eikek Date: Sat, 12 Jun 2021 19:04:27 +0200 Subject: [PATCH] Update sbt openapi plugin and use redoc for documentation --- build.sbt | 5 +++-- project/plugins.sbt | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 0422c9ab..013014da 100644 --- a/build.sbt +++ b/build.sbt @@ -412,7 +412,7 @@ val restapi = project openapiTargetLanguage := Language.Scala, openapiPackage := Pkg("docspell.restapi.model"), openapiSpec := (Compile / resourceDirectory).value / "docspell-openapi.yml", - openapiStaticArgs := Seq("-l", "html2") + openapiStaticGen := OpenApiDocGenerator.Redoc ) .dependsOn(common) @@ -431,7 +431,8 @@ val joexapi = project Dependencies.http4sClient, openapiTargetLanguage := Language.Scala, openapiPackage := Pkg("docspell.joexapi.model"), - openapiSpec := (Compile / resourceDirectory).value / "joex-openapi.yml" + openapiSpec := (Compile / resourceDirectory).value / "joex-openapi.yml", + openapiStaticGen := OpenApiDocGenerator.Redoc ) .dependsOn(common) diff --git a/project/plugins.sbt b/project/plugins.sbt index 8690f525..ea1c008a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.29") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0") -addSbtPlugin("com.github.eikek" % "sbt-openapi-schema" % "0.7.1") +addSbtPlugin("com.github.eikek" % "sbt-openapi-schema" % "0.8.0") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15") addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2") addSbtPlugin("io.kevinlee" % "sbt-github-pages" % "0.5.0")