Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Remove compile dependency from kamon-newrelic to kamon-testkit #231

Merged
merged 1 commit into from Jul 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions project/Projects.scala
Expand Up @@ -92,7 +92,7 @@ object Projects extends Build {
test(scalatest, akkaTestKit, sprayTestkit, akkaSlf4j, slf4Jul, slf4Log4j, logback))

lazy val kamonNewrelic = Project("kamon-newrelic", file("kamon-newrelic"))
.dependsOn(kamonCore % "compile->compile;test->test", kamonTestkit % "compile->compile;test->test")
.dependsOn(kamonCore % "compile->compile;test->test", kamonTestkit % "test->test")
.settings(basicSettings: _*)
.settings(formatSettings: _*)
.settings(aspectJSettings: _*)
Expand Down Expand Up @@ -196,4 +196,4 @@ object Projects extends Build {
provided(aspectJ))

val noPublishing = Seq(publish := (), publishLocal := (), publishArtifact := false)
}
}