mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
* add tests for scala sttp circe * use jdk 11 * test with jdk 17 * fix * test in circleci * remove finch
19 lines
428 B
Scala
19 lines
428 B
Scala
version := "1.0.0"
|
|
name := "scala-sttp-petstore"
|
|
organization := "org.openapitools"
|
|
|
|
scalaVersion := "2.13.16"
|
|
crossScalaVersions := Seq(scalaVersion.value, "2.12.20")
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.softwaremill.sttp.client3" %% "core" % "3.3.18",
|
|
"com.softwaremill.sttp.client3" %% "circe" % "3.3.18",
|
|
"io.circe" %% "circe-generic" % "0.14.1"
|
|
)
|
|
|
|
scalacOptions := Seq(
|
|
"-unchecked",
|
|
"-deprecation",
|
|
"-feature"
|
|
)
|