Skip to content

Commit

Permalink
update Gradle to 8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
RBusarow committed Nov 14, 2024
1 parent da24824 commit 72ad527
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,14 @@ internal class ClasspathTest : BaseGradleTest() {
val taskOutputs = output.split("> Task ", "\n\n")
.associate {
val lines = it.trim().lines()
lines.first() to lines.drop(1).joinToString("\n").trim()
lines.first() to lines.drop(1).joinToString("\n")
.replace(
// This warning is generated when accessing `runtimeClasspath`
// in projects using an old version of AGP.
regex = """(?:\[Incubating] )?Problems report is available at.+""".toRegex(),
replacement = ""
)
.trim()
}

val stdlib = when {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 72ad527

Please sign in to comment.