Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Remove unnecessary dependencies. (#49)
Browse files Browse the repository at this point in the history
* Remove unnecessary dependencies.

* Remove kamon aspectj runner.
aquamatthias authored and markglh committed Jan 9, 2018

Verified

This commit was signed with the committer’s verified signature.
xdev-renovate XDEV Renovate
1 parent 9185032 commit 6ac885e
Showing 2 changed files with 2 additions and 17 deletions.
17 changes: 2 additions & 15 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ lazy val `reactive-kinesis` =
.settings(
libraryDependencies ++=
library.jackson ++ library.amazon ++ library.lightbend ++
library.logback ++ library.joda ++ library.scalactic ++ library.testing
library.logback ++ library.testing
)

// *****************************************************************************
@@ -25,7 +25,6 @@ lazy val library =
object Version {
val scalaCheck = "1.13.5"
val scalaTest = "3.0.3"
val kamon = "0.6.6"
val jackson = "2.8.7"
val akka = "2.5.7"
}
@@ -61,23 +60,11 @@ lazy val library =
"ch.qos.logback" % "logback-classic" % "1.1.11" % Compile
)

val joda = Seq(
"org.joda" % "joda-convert" % "1.2" % Compile
)

val scalactic = Seq(
"org.scalactic" %% "scalactic" % Version.scalaTest % Compile)

val testing = Seq(
"org.scalatest" %% "scalatest" % Version.scalaTest % "it,test",
"org.scalacheck" %% "scalacheck" % Version.scalaCheck % "it,test",
"com.typesafe.akka" %% "akka-testkit" % Version.akka % "it,test",
"org.mockito" % "mockito-core" % "2.7.15" % "it,test",
"io.kamon" %% "kamon-core" % Version.kamon % "it,test",
"io.kamon" %% "kamon-akka-2.4" % Version.kamon % "it,test",
"io.kamon" %% "kamon-statsd" % Version.kamon % "it,test",
"io.kamon" %% "kamon-log-reporter" % Version.kamon % "it,test",
"io.kamon" %% "kamon-system-metrics" % Version.kamon % "it,test"
"org.mockito" % "mockito-core" % "2.7.15" % "it,test"
)
}

2 changes: 0 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@

addSbtPlugin("io.kamon" % "sbt-aspectj-runner" % "1.0.1")

addSbtPlugin("com.dwijnand" % "sbt-travisci" % "1.1.0")
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.6.8")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.2")

0 comments on commit 6ac885e

Please sign in to comment.