Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
3 changes: 2 additions & 1 deletion examples/springdoc-openapi-scala-1/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ lazy val root = (project in file("."))
"za.co.absa" %% "springdoc-openapi-scala-1" % `springdoc-openapi-scala-1-version`,
"org.springdoc" % "springdoc-openapi-webmvc-core" % "1.7.0",
"org.springframework.boot" % "spring-boot-starter-web" % "2.6.6",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.16.1"
"com.fasterxml.jackson.core" % "jackson-databind" % "2.16.1",
"org.scala-lang" % "scala-reflect" % scalaVersion.value
),
webappWebInfClasses := true,
inheritJarManifest := true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
*/

addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "4.2.4")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")
2 changes: 1 addition & 1 deletion examples/springdoc-openapi-scala-2/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lazy val root = (project in file("."))
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.2.0",
"org.springframework.boot" % "spring-boot-starter-web" % "3.4.3",
"org.playframework" %% "play-json" % "3.0.1"
),
webappWebInfClasses := true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
*/

addSbtPlugin("com.earldouglas" % "xsbt-web-plugin" % "4.2.4")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")
6 changes: 6 additions & 0 deletions publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ ThisBuild / developers := List(
name = "Kevin Wallimann",
email = "[email protected]",
url = url("https://github.com/kevinwallimann")
),
Developer(
id = "AlexGuzmanAtAbsa",
name = "Alejandro Guzman",
email = "[email protected]",
url = url("https://github.com/AlexGuzmanAtAbsa")
)
)

Expand Down