mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-20 08:30:58 +00:00
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>
19 lines
431 B
Scala
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"
|
|
)
|