Skip to content

Commit

Permalink
More logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lptr committed Aug 21, 2024
1 parent 83cd7ba commit 018159f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:

- run: |
ls -lR build/remote
unzip -l build/remote/file-events.jar
- name: Test
run: |
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down Expand Up @@ -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")))
Expand Down

0 comments on commit 018159f

Please sign in to comment.