Skip to content

Commit

Permalink
Make guava updateable by renovate and update guava-jre
Browse files Browse the repository at this point in the history
Signed-off-by: l-1sqared <[email protected]>
  • Loading branch information
l-1squared committed Jun 9, 2022
1 parent 1a22d03 commit 34c41fb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ subprojects {
slf4jVersion = '1.7.35'
paranamerVersion = '2.8'
jansiVersion = '1.18'
guavaVersion = '30.1.1-jre'
guavaAndroidVersion = '28.1-android'
springVersion = '5.3.19'
jacocoVersion = '0.8.5'
quickcheckVersion = '0.6'
Expand Down
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.all {
}

dependencies {
api "com.google.guava:guava:$guavaAndroidVersion"
api 'com.google.guava:guava:28.1-android'
api("net.bytebuddy:byte-buddy-android:$byteBuddyVersion")
api "junit:junit:$junitVersion"
implementation "androidx.appcompat:appcompat:1.4.2"
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:$guavaVersion"
api 'com.google.guava:guava:31.1-jre'
api 'com.google.code.gson:gson:2.9.0'
implementation "com.thoughtworks.paranamer:paranamer:$paranamerVersion"
implementation "net.bytebuddy:byte-buddy:$byteBuddyVersion"
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 @@ -8,7 +8,7 @@ dependencies {
implementation localGroovy()
implementation project(':jgiven-core')
implementation project(':jgiven-html5-report')
implementation "com.google.guava:guava:$guavaVersion"
implementation 'com.google.guava:guava:31.1-jre'
implementation 'com.google.code.gson:gson:2.9.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:$guavaVersion")
implementation("com.google.guava:guava:31.1-jre")
implementation "net.bytebuddy:byte-buddy-gradle-plugin:$byteBuddyVersion"
implementation "net.bytebuddy:byte-buddy-agent:$byteBuddyVersion"
testImplementation("com.google.guava:guava-testlib:$guavaVersion")
testImplementation("com.google.guava:guava-testlib:31.1-jre")
testImplementation 'org.mockito:mockito-inline:4.6.1'
}

Expand Down

0 comments on commit 34c41fb

Please sign in to comment.