diff --git a/.gitignore b/.gitignore index ccb4211..32707a2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.bsp # Created by https://www.gitignore.io/api/osx,sbt,linux,scala,intellij # Edit at https://www.gitignore.io/?templates=osx,sbt,linux,scala,intellij @@ -153,4 +154,3 @@ project/plugins/project/ *.metals # End of https://www.gitignore.io/api/osx,sbt,linux,scala,intellij - diff --git a/README.md b/README.md index 19a6b48..deb801e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A Sbt plugin to support the OpenAPI generator project. Add to your `project/plugins.sbt`: ```sbt -addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "5.1.0") +addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "5.3.0") ``` # Configuration diff --git a/build.sbt b/build.sbt index d0e87a9..33df4ff 100644 --- a/build.sbt +++ b/build.sbt @@ -54,5 +54,5 @@ lazy val `sbt-openapi-generator` = (project in file(".")) devConnection = "scm:git:ssh://git@github.com:OpenAPITools/openapi-generator.git") ), - libraryDependencies += "org.openapitools" % "openapi-generator" % "5.1.0" + libraryDependencies += "org.openapitools" % "openapi-generator" % "5.3.0" ).enablePlugins(SbtPlugin)