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

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

There is a newer version: 7.6.0
Show newest version
version := "{{artifactVersion}}"
name := "{{artifactId}}"
organization := "{{groupId}}"

scalaVersion := "2.13.12"
val PekkoVersion = "1.0.2"

libraryDependencies ++= Seq(
  "com.typesafe" % "config" % "1.4.3",
  "org.apache.pekko" %% "pekko-actor" % PekkoVersion,
  "org.apache.pekko" %% "pekko-stream" % PekkoVersion,
  "org.apache.pekko" %% "pekko-stream" % PekkoVersion,
  "com.github.pjfanning" %% "pekko-http-json4s" % "2.3.2",
  "org.json4s" %% "json4s-jackson" % "4.0.7",
  "org.json4s" %% "json4s-ext" % "4.0.7",
  // test dependencies
  "org.scalatest"     %% "scalatest"  % "3.2.17"   % "test",
  "org.scalatestplus" %% "junit-4-13" % "3.2.17.0" % "test"
)

resolvers ++= Seq(Resolver.mavenLocal)

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

publishArtifact in (Compile, packageDoc) := false




© 2015 - 2024 Weber Informatics LLC | Privacy Policy