From 9d60ce5c634027941251fe571a04a908f32f9cd0 Mon Sep 17 00:00:00 2001 From: Roberto Perez Alcolea Date: Thu, 12 Dec 2024 10:03:02 -0800 Subject: [PATCH] Gradle 8.11.1 --- gradle/wrapper/gradle-wrapper.properties | 2 +- .../dependency/MultiProjectCircularDependencyRuleSpec.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 41c00d09..b6d150fa 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https://services.gradle.org/distributions-snapshots/gradle-8.12-20241210012659+0000-bin.zip +distributionUrl=https://services.gradle.org/distributions/gradle-8.11.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/src/test/groovy/com/netflix/nebula/lint/rule/dependency/MultiProjectCircularDependencyRuleSpec.groovy b/src/test/groovy/com/netflix/nebula/lint/rule/dependency/MultiProjectCircularDependencyRuleSpec.groovy index e0031cb5..aa8450e4 100644 --- a/src/test/groovy/com/netflix/nebula/lint/rule/dependency/MultiProjectCircularDependencyRuleSpec.groovy +++ b/src/test/groovy/com/netflix/nebula/lint/rule/dependency/MultiProjectCircularDependencyRuleSpec.groovy @@ -221,7 +221,7 @@ class MultiProjectCircularDependencyRuleSpec extends BaseIntegrationTestKitSpec def result = runTasksAndFail('fixGradleLint') then: - result.output.contains("Could not get unknown property ':foo' for project ':bar' of type org.gradle.api.internal.artifacts.dependencies.DefaultProjectDependency") + assert result.output.contains("Could not get unknown property ':foo' for DefaultProjectDependency{identityPath=':bar', configuration='default'}") || result.output.contains("Could not get unknown property ':foo' for project ':bar' of type org.gradle.api.internal.artifacts.dependencies.DefaultProjectDependency") } def 'detects circular dependencies in multi project - with bad syntax excludes fails but not in lint'() {