From cbd0ff0688076be1b739eeca4371c043e46df27f Mon Sep 17 00:00:00 2001 From: Alexis Tual Date: Tue, 29 Nov 2022 12:34:32 +0100 Subject: [PATCH] Fix for Gradle 7.6 compatibility --- .github/workflow-samples/gradle-plugin/plugin/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflow-samples/gradle-plugin/plugin/build.gradle b/.github/workflow-samples/gradle-plugin/plugin/build.gradle index e954fb0..7b32ecc 100644 --- a/.github/workflow-samples/gradle-plugin/plugin/build.gradle +++ b/.github/workflow-samples/gradle-plugin/plugin/build.gradle @@ -29,7 +29,7 @@ testing { functionalTest(JvmTestSuite) { dependencies { // functionalTest test suite depends on the production code in tests - implementation project + implementation(project(':plugin')) } targets {