Skip to content

Commit

Permalink
Adjust expectations to versions upgrades in Guava 32
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Jun 27, 2023
1 parent 699fdf7 commit 530c0ff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions integration-tests/gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ val expectedReducedRuntimeClasspathAndroidVersion= setOf(
"guava-${guavaVersionJre.replace("jre", "android")}.jar",
"failureaccess-1.0.1.jar",
"jsr305-3.0.2.jar",
"checker-qual-3.12.0.jar",
"error_prone_annotations-2.7.1.jar"
"checker-qual-3.33.0.jar",
"error_prone_annotations-2.18.0.jar"
)
val expectedReducedRuntimeClasspathJreVersion = setOf(
"guava-$guavaVersionJre.jar",
"failureaccess-1.0.1.jar",
"jsr305-3.0.2.jar",
"checker-qual-3.12.0.jar",
"error_prone_annotations-2.7.1.jar"
"checker-qual-3.33.0.jar",
"error_prone_annotations-2.18.0.jar"
)
val expectedCompileClasspathAndroidVersion = expectedReducedRuntimeClasspathAndroidVersion + setOf(
"j2objc-annotations-1.3.jar"
"j2objc-annotations-2.8.jar"
)
val expectedCompileClasspathJreVersion = expectedReducedRuntimeClasspathJreVersion + setOf(
"j2objc-annotations-1.3.jar"
"j2objc-annotations-2.8.jar"
)

val extraLegacyDependencies = setOf(
Expand Down

0 comments on commit 530c0ff

Please sign in to comment.