remove unused dependency

pull/5854/head
Thibault Duplessis 2019-12-31 12:45:06 -05:00
parent 8770e94693
commit 91319964a5
2 changed files with 2 additions and 4 deletions

View File

@ -33,8 +33,7 @@ routesGenerator := LilaRoutesGenerator
libraryDependencies ++= Seq(
macwire.macros, macwire.util, play.json, jodaForms, ws,
scalaz, chess, compression, scalalib, hasher,
reactivemongo.driver, reactivemongo.bson,
maxmind, prismic, markdown, scalatags,
reactivemongo.driver, maxmind, prismic, markdown, scalatags,
kamon.core, kamon.influxdb, kamon.metrics,
scrimage, scaffeine, lettuce
) ++ silencer.bundle ++ {

View File

@ -41,10 +41,9 @@ object Dependencies {
object reactivemongo {
val version = "0.19.5"
val driver = "org.reactivemongo" %% "reactivemongo" % version
val bson = "org.reactivemongo" %% "reactivemongo-bson-api" % version
val stream = "org.reactivemongo" %% "reactivemongo-akkastream" % version
val epoll = "org.reactivemongo" % "reactivemongo-shaded-native" % s"$version-linux-x86-64"
def bundle = Seq(driver, bson, stream)
def bundle = Seq(driver, stream)
}
object play {