Skip to content
4 changes: 2 additions & 2 deletions project/Commons.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ object Commons extends ProjectGroup("commons") {
// option in IntelliJ's SBT settings.
val forIdeaImport: Boolean = System.getProperty("idea.managed", "false").toBoolean && System.getProperty("idea.runid") == null

val guavaVersion = "33.4.0-jre"
val guavaVersion = "33.4.6-jre"
val jsr305Version = "3.0.2"
val scalatestVersion = "3.2.19"
val scalatestplusScalacheckVersion = "3.2.14.0"
Expand Down Expand Up @@ -266,7 +266,6 @@ object Commons extends ProjectGroup("commons") {
jvmCommonSettings,
sourceDirsSettings(_ / "jvm"),
libraryDependencies ++= Seq(
"com.google.code.findbugs" % "jsr305" % jsr305Version % Optional,
"com.google.guava" % "guava" % guavaVersion % Optional,
"io.monix" %% "monix" % monixVersion % Optional,
),
Expand All @@ -292,6 +291,7 @@ object Commons extends ProjectGroup("commons") {
sourceDirsSettings(_ / "jvm"),
libraryDependencies ++= Seq(
"com.google.guava" % "guava" % guavaVersion,
"com.google.code.findbugs" % "jsr305" % jsr305Version % Optional,
"io.monix" %% "monix" % monixVersion,
"org.mongodb" % "mongodb-driver-core" % mongoVersion,
"org.mongodb" % "mongodb-driver-sync" % mongoVersion % Optional,
Expand Down
Loading