26 lines
634 B
Scala

version := "1.0.0"
name := "scala-akka-petstore-client"
organization := "io.swagger"
scalaVersion := "2.11.12"
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.3.2",
"com.typesafe.akka" %% "akka-actor" % "2.5.8",
"io.spray" % "spray-client" % "1.3.1",
"joda-time" % "joda-time" % "2.9.9",
"org.json4s" %% "json4s-jackson" % "3.5.3",
// test dependencies
"org.scalatest" %% "scalatest" % "3.0.4" % "test",
"junit" % "junit" % "4.12" % "test"
)
resolvers ++= Seq(Resolver.mavenLocal)
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-feature"
)
publishArtifact in (Compile, packageDoc) := false