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.12.13"
crossScalaVersions := Seq(scalaVersion.value, "2.13.4")


libraryDependencies ++= Seq(
  "com.typesafe" % "config" % "1.4.1",
  "com.typesafe.akka" %% "akka-actor" % "2.6.12",
  "com.typesafe.akka" %% "akka-stream" % "2.6.12",
  "com.typesafe.akka" %% "akka-http" % "10.2.3",
{{#joda}}
  "joda-time" % "joda-time" % "2.10.1",
{{/joda}}
  "org.json4s" %% "json4s-jackson" % "3.6.7",
  "org.json4s" %% "json4s-ext" % "3.6.7",
  "de.heikoseeberger" %% "akka-http-json4s" % "1.27.0",
  "org.scala-lang.modules" %% "scala-collection-compat" % "2.4.1",
  // test dependencies
  "org.scalatest"     %% "scalatest"  % "3.2.3"   % "test",
  "org.scalatestplus" %% "junit-4-13" % "3.2.3.0" % "test"
)

resolvers ++= Seq(Resolver.mavenLocal)

scalacOptions := Seq(
  "-unchecked",
  "-deprecation",
  "-feature"
)

publishArtifact in (Compile, packageDoc) := false




© 2015 - 2024 Weber Informatics LLC | Privacy Policy