Update sbt openapi plugin and use redoc for documentation

This commit is contained in:
eikek 2021-06-12 19:04:27 +02:00
parent 8d15737693
commit 1e685a9ea2
2 changed files with 4 additions and 3 deletions

View File

@ -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)

View File

@ -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")