Kasper Kondzielski 323cd38b5c
Improve sttpOpenApiClient generator (#6684)
Co-authored-by: eugeniyk <keatrance@gmail.com>
2020-06-30 21:14:34 -04:00

19 lines
426 B
Scala

version := "1.0.0"
name := "scala-sttp-petstore"
organization := "org.openapitools"
scalaVersion := "2.13.2"
crossScalaVersions := Seq(scalaVersion.value, "2.12.10")
libraryDependencies ++= Seq(
"com.softwaremill.sttp.client" %% "core" % "2.2.0",
"com.softwaremill.sttp.client" %% "json4s" % "2.2.0",
"org.json4s" %% "json4s-jackson" % "3.6.8"
)
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-feature"
)