Mickael Magniez 38c33b92fe
Add scala-pekko client generator (#17417)
* feat: add scala-pekko client generator

* feat: add scala-pekko client to CI
2023-12-22 10:58:27 +08:00

30 lines
835 B
Scala

version := "1.0.0"
name := "scala-pekko-petstore-client"
organization := "org.openapitools"
scalaVersion := "2.13.12"
val PekkoVersion = "1.0.2"
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.3",
"org.apache.pekko" %% "pekko-actor" % PekkoVersion,
"org.apache.pekko" %% "pekko-stream" % PekkoVersion,
"org.apache.pekko" %% "pekko-stream" % PekkoVersion,
"com.github.pjfanning" %% "pekko-http-json4s" % "2.3.2",
"org.json4s" %% "json4s-jackson" % "4.0.7",
"org.json4s" %% "json4s-ext" % "4.0.7",
// test dependencies
"org.scalatest" %% "scalatest" % "3.2.17" % "test",
"org.scalatestplus" %% "junit-4-13" % "3.2.17.0" % "test"
)
resolvers ++= Seq(Resolver.mavenLocal)
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-feature"
)
publishArtifact in (Compile, packageDoc) := false