Skip to content

Guava 33.4.6 #692

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 3, 2025
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