Skip to content

Commit

Permalink
Remove force from testcase as it no longer exists in Gradle 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed Nov 7, 2023
1 parent 932f0b2 commit e3489ea
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ void upgradeGuavaInGradleProject() {
dependencies {
compileOnly 'com.google.guava:guava:29.0-jre'
runtimeOnly ('com.google.guava:guava:29.0-jre') {
force = true
}
runtimeOnly ('com.google.guava:guava:29.0-jre')
}
""",
//language=groovy
Expand All @@ -67,9 +65,7 @@ void upgradeGuavaInGradleProject() {
dependencies {
compileOnly 'com.google.guava:guava:30.1.1-jre'
runtimeOnly ('com.google.guava:guava:30.1.1-jre') {
force = true
}
runtimeOnly ('com.google.guava:guava:30.1.1-jre')
}
""",
spec -> spec.afterRecipe(after -> {
Expand Down

0 comments on commit e3489ea

Please sign in to comment.