All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala-akka-client.build.sbt.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
version := "{{artifactVersion}}"
name := "{{artifactId}}"
organization := "{{groupId}}"
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy