From 4da959134870b0183b855b6634a4be30dc760160 Mon Sep 17 00:00:00 2001 From: Adam Strickland Date: Thu, 24 Oct 2024 10:30:46 -0400 Subject: [PATCH] use project dir ref to allow for multi project builds --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 3966592e..e72292fc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -60,7 +60,7 @@ tasks.withType { checkstyle { toolVersion = "10.16.0" - configDirectory.set(rootProject.file("checkstyle/")) + configDirectory.set(project.projectDir.resolve("checkstyle/")) } jacoco {