Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Feb 26, 2019
1 parent 23f94dc commit a5f98e9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5"

val http4sVersion = "0.20.0-M5"
val circeVersion = "0.11.1"
val sttpVersion = "1.5.9"
val sttpVersion = "1.5.11"

lazy val loggerDependencies = Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3",
Expand Down Expand Up @@ -175,7 +175,7 @@ lazy val playground: Project = (project in file("playground"))
name := "tapir-tests",
libraryDependencies ++= Seq(
"com.softwaremill.sttp" %% "akka-http-backend" % sttpVersion,
"org.webjars" % "swagger-ui" % "3.20.5"
"org.webjars" % "swagger-ui" % "3.20.9"
),
libraryDependencies ++= loggerDependencies,
publishArtifact := false
Expand Down
2 changes: 1 addition & 1 deletion doc/openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ println(docs.toYaml)
Exposing the OpenAPI documentation can be very application-specific. For example, to expose the docs using the
Swagger UI and akka-http:

* add `libraryDependencies += "org.webjars" % "swagger-ui" % "3.20.5"` to `build.sbt` (or newer)
* add `libraryDependencies += "org.webjars" % "swagger-ui" % "3.20.9"` to `build.sbt` (or newer)
* generate the yaml content to serve as a `String` using tapir:

```scala
Expand Down
2 changes: 1 addition & 1 deletion playground/src/main/scala/tapir/example/BooksExample.scala
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class SwaggerUI(yml: String) {
path(SwaggerYml) {
complete(yml)
} ~
getFromResourceDirectory("META-INF/resources/webjars/swagger-ui/3.20.5/")
getFromResourceDirectory("META-INF/resources/webjars/swagger-ui/3.20.9/")
}
}

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("com.softwaremill.sbt-softwaremill" % "sbt-softwaremill" % "1.4.2")
addSbtPlugin("com.softwaremill.sbt-softwaremill" % "sbt-softwaremill" % "1.5.0")
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")

0 comments on commit a5f98e9

Please sign in to comment.