Skip to content

Commit

Permalink
Suspect this will fix CI failures I cannot reproduce locally.
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed Nov 7, 2023
1 parent 635fdaa commit cac658f
Showing 1 changed file with 6 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ void guava() {
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')
}
""",
"""
Expand All @@ -71,9 +69,7 @@ void guava() {
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 Expand Up @@ -115,9 +111,7 @@ void updateVersionInVariable() {
}
dependencies {
implementation ("com.google.guava:guava:$guavaVersion") {
force = true
}
implementation ("com.google.guava:guava:$guavaVersion")
implementation "com.fasterxml.jackson.core:jackson-databind:$otherVersion"
}
""",
Expand All @@ -133,9 +127,7 @@ void updateVersionInVariable() {
}
dependencies {
implementation ("com.google.guava:guava:$guavaVersion") {
force = true
}
implementation ("com.google.guava:guava:$guavaVersion")
implementation "com.fasterxml.jackson.core:jackson-databind:$otherVersion"
}
"""
Expand Down Expand Up @@ -230,9 +222,7 @@ void mapNotationLiteral() {
}
dependencies {
implementation (group: "com.google.guava", name: "guava", version: '29.0-jre') {
force = true
}
implementation (group: "com.google.guava", name: "guava", version: '29.0-jre')
}
""",
"""
Expand All @@ -245,9 +235,7 @@ void mapNotationLiteral() {
}
dependencies {
implementation (group: "com.google.guava", name: "guava", version: '30.1.1-jre') {
force = true
}
implementation (group: "com.google.guava", name: "guava", version: '30.1.1-jre')
}
"""
)
Expand Down

0 comments on commit cac658f

Please sign in to comment.