Skip to content

Commit a85e315

Browse files
Remove springdoc-openapi-starter-webmvc-api version limitation (#71)
* Upgrade springdoc-openapi-starter-webmvc-api --------- Co-authored-by: Kevin Wallimann <[email protected]>
1 parent d1dccd2 commit a85e315

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The library has springdoc-openapi as a provided dependency,
3232
thus users of the library have to include that dependency in their projects:
3333
- for springdoc-openapi 1.x versions `1.6.7` up to `1.7.0` (including) of
3434
`"org.springdoc" % "springdoc-openapi-webmvc-core"` are supported
35-
- for springdoc-openapi 2.x versions `2.0.0` up to `2.8.9` (including) of
35+
- for springdoc-openapi 2.x versions `2.0.0` onwards of
3636
`"org.springdoc" % "springdoc-openapi-starter-webmvc-api"` are supported
3737

3838
### Add library dependency to SBT/Maven

examples/springdoc-openapi-scala-2/simple/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ lazy val root = (project in file("."))
2222
.settings(
2323
libraryDependencies ++= Seq(
2424
"za.co.absa" %% "springdoc-openapi-scala-2" % `springdoc-openapi-scala-2-version`,
25-
"org.springdoc" % "springdoc-openapi-starter-webmvc-api" % "2.8.9",
26-
"org.springframework.boot" % "spring-boot-starter-web" % "3.4.3",
25+
"org.springdoc" % "springdoc-openapi-starter-webmvc-api" % "2.8.14",
26+
"org.springframework.boot" % "spring-boot-starter-web" % "3.5.7",
2727
"org.playframework" %% "play-json" % "3.0.1"
2828
),
2929
webappWebInfClasses := true,

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object Dependencies {
2727

2828
def springdocOpenapi(majorVersion: Int): String = majorVersion match {
2929
case 1 => "[1.6.7,1.7.0]"
30-
case 2 => "[2.0.0,2.8.9]"
30+
case 2 => "[2.0.0,)"
3131
}
3232
}
3333

0 commit comments

Comments
 (0)