From 018159feae3a2a8c7cacf523f4489cef06ae2afa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=B3r=C3=A1nt=20Pint=C3=A9r?= Date: Wed, 21 Aug 2024 21:17:56 +0200 Subject: [PATCH] More logging --- .github/workflows/build.yaml | 1 + build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 391f7d3..9575076 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -73,6 +73,7 @@ jobs: - run: | ls -lR build/remote + unzip -l build/remote/file-events.jar - name: Test run: | diff --git a/build.gradle.kts b/build.gradle.kts index 2343d51..27aa591 100755 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -26,7 +26,7 @@ java { } // Define a custom configuration that only includes the test sources -val testOnlyImplementation by configurations.creating { +val testOnlyClasspath by configurations.creating { // This configuration extends from 'testImplementation' extendsFrom(configurations.testImplementation.get()) @@ -59,7 +59,7 @@ testing { // Configure the dependencies dependencies { // Use the custom configuration that includes only the test dependencies - implementation(testOnlyImplementation) + implementation(testOnlyClasspath) // Add the external JAR as a dependency implementation(files(layout.buildDirectory.file("remote/file-events.jar")))