aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-play-newrelic-example/project/Build.scala
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-03-15 12:02:45 -0300
committerDiego <diegolparra@gmail.com>2014-03-15 12:08:02 -0300
commitcb6efe5eae925ef3453efe76ab0b04ae0427cf9d (patch)
tree9e29e5a7b476acf068a9eff9c66c3e0cd22d5200 /kamon-examples/kamon-play-newrelic-example/project/Build.scala
parenta665432940038e8350801e3b99c411209c7edf93 (diff)
downloadKamon-cb6efe5eae925ef3453efe76ab0b04ae0427cf9d.tar.gz
Kamon-cb6efe5eae925ef3453efe76ab0b04ae0427cf9d.tar.bz2
Kamon-cb6efe5eae925ef3453efe76ab0b04ae0427cf9d.zip
Play NewRelic Example
Diffstat (limited to 'kamon-examples/kamon-play-newrelic-example/project/Build.scala')
-rw-r--r--kamon-examples/kamon-play-newrelic-example/project/Build.scala22
1 files changed, 22 insertions, 0 deletions
diff --git a/kamon-examples/kamon-play-newrelic-example/project/Build.scala b/kamon-examples/kamon-play-newrelic-example/project/Build.scala
new file mode 100644
index 00000000..fa240c39
--- /dev/null
+++ b/kamon-examples/kamon-play-newrelic-example/project/Build.scala
@@ -0,0 +1,22 @@
+import java.io.File
+import sbt._
+import Keys._
+import play.Project._
+
+object ApplicationBuild extends Build {
+
+ val appName = "Kamon-Play-NewRelic-Example"
+ val appVersion = "1.0-SNAPSHOT"
+
+ val appDependencies = Seq(
+ "kamon" % "kamon-core" % "0.0.14-SNAPSHOT",
+ "kamon" % "kamon-play" % "0.0.14-SNAPSHOT",
+ "kamon" % "kamon-newrelic" % "0.0.14-SNAPSHOT"
+ )
+
+
+ val main = play.Project(appName, appVersion, appDependencies).settings(
+ // For additionally resolving from the conventional ivy local home.
+ resolvers += Resolver.file("LocalIvy", file(Path.userHome +
+ File.separator + ".ivy2" + File.separator + "local"))(Resolver.ivyStylePatterns))
+}