aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-play-newrelic-example/project/Build.scala
diff options
context:
space:
mode:
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, 0 insertions, 22 deletions
diff --git a/kamon-examples/kamon-play-newrelic-example/project/Build.scala b/kamon-examples/kamon-play-newrelic-example/project/Build.scala
deleted file mode 100644
index fa240c39..00000000
--- a/kamon-examples/kamon-play-newrelic-example/project/Build.scala
+++ /dev/null
@@ -1,22 +0,0 @@
-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))
-}