William Cheng 86a8e52d08
Add tests for scala sttp client (jsonLibrary: circe) (#21061)
* add tests for scala sttp circe

* use jdk 11

* test with jdk 17

* fix

* test in circleci

* remove finch
2025-04-09 17:19:06 +08:00

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"
)