diff --git a/jgiven-android/build.gradle b/jgiven-android/build.gradle index e0af592dc5..70e14ee97a 100644 --- a/jgiven-android/build.gradle +++ b/jgiven-android/build.gradle @@ -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){ diff --git a/jgiven-core/build.gradle b/jgiven-core/build.gradle index a8d3bc8bed..cee214e381 100644 --- a/jgiven-core/build.gradle +++ b/jgiven-core/build.gradle @@ -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 diff --git a/jgiven-gradle-plugin/build.gradle b/jgiven-gradle-plugin/build.gradle index 64d5007f08..d5c2158baa 100644 --- a/jgiven-gradle-plugin/build.gradle +++ b/jgiven-gradle-plugin/build.gradle @@ -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') diff --git a/jgiven-timing/build.gradle b/jgiven-timing/build.gradle index ad0672dca1..db7388fe5d 100644 --- a/jgiven-timing/build.gradle +++ b/jgiven-timing/build.gradle @@ -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' }