Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The library has springdoc-openapi as a provided dependency,
thus users of the library have to include that dependency in their projects:
- for springdoc-openapi 1.x versions `1.6.7` up to `1.7.0` (including) of
`"org.springdoc" % "springdoc-openapi-webmvc-core"` are supported
- for springdoc-openapi 2.x versions `2.0.0` up to `2.8.9` (including) of
- for springdoc-openapi 2.x versions `2.0.0` onwards of
`"org.springdoc" % "springdoc-openapi-starter-webmvc-api"` are supported

### Add library dependency to SBT/Maven
Expand Down
4 changes: 2 additions & 2 deletions examples/springdoc-openapi-scala-2/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ lazy val root = (project in file("."))
.settings(
libraryDependencies ++= Seq(
"za.co.absa" %% "springdoc-openapi-scala-2" % `springdoc-openapi-scala-2-version`,
"org.springdoc" % "springdoc-openapi-starter-webmvc-api" % "2.8.9",
"org.springframework.boot" % "spring-boot-starter-web" % "3.4.3",
"org.springdoc" % "springdoc-openapi-starter-webmvc-api" % "2.8.14",
"org.springframework.boot" % "spring-boot-starter-web" % "3.5.7",
"org.playframework" %% "play-json" % "3.0.1"
),
webappWebInfClasses := true,
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object Dependencies {

def springdocOpenapi(majorVersion: Int): String = majorVersion match {
case 1 => "[1.6.7,1.7.0]"
case 2 => "[2.0.0,2.8.9]"
case 2 => "[2.0.0,)"
}
}

Expand Down