From 31b1859a5b9b49553068a4da6ada5de2fe9d82ac Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Wed, 2 Oct 2024 10:24:29 -0400 Subject: [PATCH] Exposing the Gradle APIs as an api dependency since collectors need to implement "Named" --- invert-gradle-plugin/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/invert-gradle-plugin/build.gradle.kts b/invert-gradle-plugin/build.gradle.kts index 85fad1d..f025f5d 100644 --- a/invert-gradle-plugin/build.gradle.kts +++ b/invert-gradle-plugin/build.gradle.kts @@ -34,6 +34,7 @@ tasks.named("sourcesJar") { } dependencies { + api(gradleApi()) api(project(":invert-models")) implementation(libs.kotlinx.serialization.json)