Revert "non-shaded reactivemongo"

This reverts commit 737bd8487f.
pull/5836/head
Thibault Duplessis 2019-12-28 15:03:33 -06:00
parent 737bd8487f
commit 7eb4e8d90e
2 changed files with 9 additions and 5 deletions

View File

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

View File

@ -39,9 +39,12 @@ object Dependencies {
} }
object reactivemongo { object reactivemongo {
val driver = "org.reactivemongo" %% "reactivemongo" % "0.20.0-noshaded-SNAPSHOT" val version = "0.19.5"
val stream = "org.reactivemongo" %% "reactivemongo-akkastream" % "0.19.7" val driver = "org.reactivemongo" %% "reactivemongo" % version
def bundle = Seq(driver, stream) 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)
} }
object play { object play {