Boris Smidt ff30df92f8
Upgrade sttp generator to sttp3 (#11260)
Remove CIRCE_VERSION from generator because it is taken in as a transitive dependency of `  "com.softwaremill.sttp.client3" %% "json4s" % "3.3.18"`

Co-authored-by: boris <borissmidt@hotmail.com>
2022-02-08 13:46:42 +08:00

19 lines
431 B
Scala

version := "1.0.0"
name := "scala-sttp-petstore"
organization := "org.openapitools"
scalaVersion := "2.13.5"
crossScalaVersions := Seq(scalaVersion.value, "2.12.13")
libraryDependencies ++= Seq(
"com.softwaremill.sttp.client3" %% "core" % "3.3.18",
"com.softwaremill.sttp.client3" %% "json4s" % "3.3.18",
"org.json4s" %% "json4s-jackson" % "3.6.11"
)
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-feature"
)