Created
July 1, 2017 10:01
-
-
Save harmeetsingh0013/68976f5283bbd56122c972ba9b4168eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val akkaVersion = "2.4.17" | |
lazy val `akka-cinammon` = project in file(".") enablePlugins (Cinnamon) | |
// Add the Cinnamon Agent for run and test | |
cinnamon in run := true | |
cinnamon in test := true | |
// Set the Cinnamon Agent log level | |
cinnamonLogLevel := "INFO" | |
libraryDependencies ++= Seq( | |
Cinnamon.library.cinnamonCHMetrics, | |
Cinnamon.library.cinnamonAkka, | |
"com.typesafe.akka" %% "akka-actor" % akkaVersion, | |
"com.typesafe.akka" %% "akka-testkit" % akkaVersion, | |
"org.scalatest" %% "scalatest" % "3.0.1" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment