Skip to content

Commit

Permalink
gradle: Force guava version without vulnerabilities
Browse files Browse the repository at this point in the history
ref: google/guice#1798

Signed-off-by: Open592 Developer <[email protected]>
  • Loading branch information
cfrank committed Sep 25, 2024
1 parent dd718ee commit 59d26ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ repositories {
dependencies {
implementation(libs.clikt)
implementation(libs.guice)
implementation(libs.guava)
implementation(libs.kotlin.inline.logger)
runtimeOnly(libs.logback.classic)
implementation(libs.netty.all)
Expand Down
3 changes: 3 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[versions]
clikt = "5.0.0"
# https://github.com/google/guice/issues/1798
guava = { strictly = "33.3.1-jre" }
guice = "7.0.0"
jimfs = "1.3.0"
junit = "5.11.0"
Expand All @@ -16,6 +18,7 @@ ktfmt-gradle = { id = "com.ncorti.ktfmt.gradle", version.ref = "ktfmt-gradle" }

[libraries]
clikt = { module = "com.github.ajalt.clikt:clikt", version.ref = "clikt" }
guava = { module = "com.google.guava:guava", version.ref = "guava" }
guice = { module = "com.google.inject:guice", version.ref = "guice" }
jimfs = { module = "com.google.jimfs:jimfs", version.ref = "jimfs" }
junit-bom = { module = "org.junit:junit-bom", version.ref = "junit" }
Expand Down

0 comments on commit 59d26ee

Please sign in to comment.