Skip to content

Instantly share code, notes, and snippets.

@harmeetsingh0013
Created July 1, 2017 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harmeetsingh0013/68976f5283bbd56122c972ba9b4168eb to your computer and use it in GitHub Desktop.
Save harmeetsingh0013/68976f5283bbd56122c972ba9b4168eb to your computer and use it in GitHub Desktop.
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