William Cheng fac04cfa9d
Various improvements to scala-sttp4 generator (#15931)
* various improvements to scala-sttp4 generator

* test scala with jdk11

* test sttp4 in circleci

* add pom.xml

* update

* update tc
2023-06-27 23:27:38 +08:00

19 lines
430 B
Scala

version := "1.0.0"
name := "openapi-client"
organization := "org.openapitools"
scalaVersion := "2.13.10"
crossScalaVersions := Seq(scalaVersion.value, "2.12.17")
libraryDependencies ++= Seq(
"com.softwaremill.sttp.client4" %% "core" % "4.0.0-M1",
"com.softwaremill.sttp.client4" %% "json4s" % "4.0.0-M1",
"org.json4s" %% "json4s-jackson" % "4.0.6"
)
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-feature"
)