From d0ce8a412fbfacf1f7d8e5db97fcd2e8433ea570 Mon Sep 17 00:00:00 2001 From: Marcus Da Coregio Date: Tue, 10 Oct 2023 13:08:13 -0300 Subject: [PATCH] Remove calls to setCanBeResolved(true) in IntegrationTestPuglin Issue gh-13864 --- .../io/spring/gradle/convention/IntegrationTestPlugin.groovy | 2 -- 1 file changed, 2 deletions(-) diff --git a/buildSrc/src/main/groovy/io/spring/gradle/convention/IntegrationTestPlugin.groovy b/buildSrc/src/main/groovy/io/spring/gradle/convention/IntegrationTestPlugin.groovy index 743dec49ac..f0a2e5c37f 100644 --- a/buildSrc/src/main/groovy/io/spring/gradle/convention/IntegrationTestPlugin.groovy +++ b/buildSrc/src/main/groovy/io/spring/gradle/convention/IntegrationTestPlugin.groovy @@ -70,11 +70,9 @@ public class IntegrationTestPlugin implements Plugin { } integrationTestCompileClasspath { extendsFrom integrationTestCompile - canBeResolved = true } integrationTestRuntimeClasspath { extendsFrom integrationTestRuntime - canBeResolved = true } }