mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-04 14:40:53 +00:00
* migrate all scala generators to use oas3 * add back pom.xml for scala-sttp * skip form model in scalaz * fix scala lagom tests * add new files * skip form models in scala finch petstore * update samples
24 lines
612 B
Scala
24 lines
612 B
Scala
version := "1.0.0"
|
|
name := "'scala-sttp-petstore'"
|
|
organization := "org.openapitools"
|
|
|
|
scalaVersion := "2.13.0"
|
|
|
|
crossScalaVersions := Seq(scalaVersion.value, "2.12.10", "2.11.12")
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.softwaremill.sttp.client" %% "core" % "2.0.0",
|
|
"com.softwaremill.sttp.client" %% "json4s" % "2.0.0",
|
|
"org.json4s" %% "json4s-jackson" % "3.6.7",
|
|
// test dependencies
|
|
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
|
|
"junit" % "junit" % "4.13" % "test"
|
|
)
|
|
|
|
scalacOptions := Seq(
|
|
"-unchecked",
|
|
"-deprecation",
|
|
"-feature"
|
|
)
|
|
|
|
publishArtifact in (Compile, packageDoc) := false |