Skip to content

Commit

Permalink
fix(deps): update dependency com.google.guava:guava to v33
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 19, 2023
1 parent e36b21b commit 50bf19f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion listings/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
mainClassName = 'App' // Define the main class for the application

dependencies {
compile 'com.google.guava:guava:23.0' // This dependency is found on compile classpath of this component and consumers.
compile 'com.google.guava:guava:33.0.0-jre' // This dependency is found on compile classpath of this component and consumers.

testCompile 'junit:junit:4.12' // Use JUnit test framework
}
Expand Down
2 changes: 1 addition & 1 deletion listings/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ application {

dependencies {
// This dependency is found on compile classpath of this component and consumers.
implementation("com.google.guava:guava:29.0-jre")
implementation("com.google.guava:guava:33.0.0-jre")

// Use JUnit test framework
testImplementation("junit:junit:4.13")
Expand Down

0 comments on commit 50bf19f

Please sign in to comment.