mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-25 02:50:52 +00:00
* various improvements to scala-sttp4 generator * test scala with jdk11 * test sttp4 in circleci * add pom.xml * update * update tc
19 lines
430 B
Scala
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"
|
|
)
|