Skip to content
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

Update guava monorepo to v33.3.1-jre #1730

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jgiven-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ configurations.configureEach {
afterEvaluate {project.ext.publishVariant('release')}

dependencies {
api('com.google.guava:guava:33.3.0-jre')
api('com.google.guava:guava:33.3.1-jre')
api("net.bytebuddy:byte-buddy-android:${libs.versions.byteBuddy.version.get()}")
api(junitVariableVersionLibs.junit4)
implementation(libs.androidx.appcompat){
Expand Down
2 changes: 1 addition & 1 deletion jgiven-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
description = "JGiven core module"

dependencies {
api 'com.google.guava:guava:33.3.0-jre'
api 'com.google.guava:guava:33.3.1-jre'
api 'com.google.code.gson:gson:2.11.0'
implementation 'com.thoughtworks.paranamer:paranamer:2.8'
implementation libs.byteBuddy
Expand Down
2 changes: 1 addition & 1 deletion jgiven-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation project(':jgiven-core')
implementation project(':jgiven-html5-report')
implementation(platform(libs.junit.bom))
implementation 'com.google.guava:guava:33.3.0-jre'
implementation 'com.google.guava:guava:33.3.1-jre'
implementation 'com.google.code.gson:gson:2.11.0'

testImplementation project(':jgiven-junit5')
Expand Down
4 changes: 2 additions & 2 deletions jgiven-timing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ description = "Module for injecting automated performance analysis for test meth

dependencies {
implementation project(":jgiven-core")
implementation("com.google.guava:guava:33.3.0-jre")
implementation("com.google.guava:guava:33.3.1-jre")
implementation libs.plugins.byteBuddy.plugin
implementation libs.byteBuddy.agent
testImplementation("com.google.guava:guava-testlib:33.3.0-jre")
testImplementation("com.google.guava:guava-testlib:33.3.1-jre")
testImplementation 'org.mockito:mockito-inline:5.2.0'
}

Expand Down
Loading