mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 03:18:53 +00:00
39bd0175b7
* Add async support to scala client. * Format api endpoints. * Modify build.sbt. * Change date format and pass StoreApis tests. * Add StringReader and StringWriter to support string serialization/deserialization. * update petstore samples for scala clients * Update maven and gradle dependency. Update tests to pass compilation.
35 lines
871 B
Scala
35 lines
871 B
Scala
version := "1.0.0"
|
|
|
|
name := "swagger-scala-client"
|
|
|
|
organization := "io.swagger"
|
|
|
|
scalaVersion := "2.11.8"
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.4.2",
|
|
"com.sun.jersey" % "jersey-core" % "1.19",
|
|
"com.sun.jersey" % "jersey-client" % "1.19",
|
|
"com.sun.jersey.contribs" % "jersey-multipart" % "1.19",
|
|
"org.jfarcand" % "jersey-ahc-client" % "1.0.5",
|
|
"io.swagger" % "swagger-core" % "1.5.8",
|
|
"joda-time" % "joda-time" % "2.2",
|
|
"org.joda" % "joda-convert" % "1.2",
|
|
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
|
|
"junit" % "junit" % "4.8.1" % "test",
|
|
"com.wordnik.swagger" %% "swagger-async-httpclient" % "0.3.5"
|
|
)
|
|
|
|
resolvers ++= Seq(
|
|
Resolver.mavenLocal
|
|
)
|
|
|
|
scalacOptions := Seq(
|
|
"-unchecked",
|
|
"-deprecation",
|
|
"-feature"
|
|
)
|
|
|
|
publishArtifact in (Compile, packageDoc) := false
|
|
|