Skip to content

Commit 010d5da

Browse files
Upgrade springdoc-openapi-starter-webmvc-api
1 parent 5f64e53 commit 010d5da

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-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` onwardss 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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ lazy val `springdoc-openapi-scala-2-version`: String = ??? // specify version of
2121
lazy val root = (project in file("."))
2222
.settings(
2323
libraryDependencies ++= Seq(
24+
// Comment out line below for local testing.
2425
"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",
26+
"org.springdoc" % "springdoc-openapi-starter-webmvc-api" % "2.8.14",
27+
"org.springframework.boot" % "spring-boot-starter-web" % "3.5.7",
2728
"org.playframework" %% "play-json" % "3.0.1"
2829
),
30+
// Uncomment and adjust line below for local testng.
31+
//unmanagedJars in Compile += file("../../../library/target/2-jvm-2.12/springdoc-openapi-scala-2_2.12-0.3.3+14-97dc83a7+20251106-1725-SNAPSHOT.jar"),
2932
webappWebInfClasses := true,
3033
inheritJarManifest := true
3134
)

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)