openapi-generator/samples/client/petstore/scalaz/build.sbt
Taylor Brown 488aa989bf Adding a new Scala client codegen (#6572)
* Adding a Scalaz codegen client

* Fixing imports and removing commented code

* Adding the bash file and updating the Pet store samples for Scalaz.

* Finalizing Scalaz generation so that it works for the Petstore.yaml

* Removing some unnecessary files and comments

* Removing some files that were accidentally generated for the wrong Scala
2017-10-16 22:07:57 +08:00

20 lines
823 B
Scala

scalaVersion := "2.11.8"
val http4sVersion = "0.15.12a"
val scalazVersion = "7.2.12"
val shapelessVersion = "2.3.2"
val argonautShapelessVersion = "1.2.0-M4"
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.2",
"com.chuusai" %% "shapeless" % shapelessVersion,
"org.http4s" %% "http4s-argonaut" % http4sVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-server-metrics" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"org.scalaz" %% "scalaz-concurrent" % scalazVersion,
"org.scalaz" %% "scalaz-core" % scalazVersion,
"io.argonaut" %% "argonaut-scalaz" % "6.2",
"com.github.alexarchambault" %% "argonaut-shapeless_6.2" % argonautShapelessVersion
)