diff --git a/project/Commons.scala b/project/Commons.scala index 62b75f574..da451ab2e 100644 --- a/project/Commons.scala +++ b/project/Commons.scala @@ -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" @@ -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, ), @@ -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,