Skip to content

Commit 74a8c3e

Browse files
committed
fix: missing comma
1 parent 921be4b commit 74a8c3e

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

modules/openapi-generator/src/main/resources/scala-sttp4/build.sbt.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ libraryDependencies ++= Seq(
1515
"org.json4s" %% "json4s-jackson" % "{{json4sVersion}}"
1616
{{/json4s}}
1717
{{#circe}}
18-
"com.softwaremill.sttp.client4" %% "circe" % "{{sttpClientVersion}}"
18+
"com.softwaremill.sttp.client4" %% "circe" % "{{sttpClientVersion}}",
1919
"io.circe" %% "circe-generic" % "{{circeVersion}}",
2020
"io.circe" %% "circe-generic-extras" % "{{circeExtrasVersion}}",
2121
{{/circe}}

samples/client/petstore/scala-sttp4-circe/.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.openapi-generator-ignore
12
README.md
23
build.sbt
34
project/build.properties

samples/client/petstore/scala-sttp4-circe/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ crossScalaVersions := Seq(scalaVersion.value, "2.12.20")
77

88
libraryDependencies ++= Seq(
99
"com.softwaremill.sttp.client4" %% "core" % "4.0.15",
10-
"com.softwaremill.sttp.client4" %% "circe" % "4.0.15"
10+
"com.softwaremill.sttp.client4" %% "circe" % "4.0.15",
1111
"io.circe" %% "circe-generic" % "0.14.15",
1212
"io.circe" %% "circe-generic-extras" % "0.14.4",
1313
)

0 commit comments

Comments
 (0)