Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
uses: gradle/actions/wrapper-validation@v4

# Run verifyPlugin and test Gradle tasks
test:
Expand Down
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,16 @@ tasks {
version.set("12.18.3")
nodeProjectDir.set(file("${project.projectDir}/jetbrains-viewer"))
}

// Add duplicates strategy for all copy tasks
withType<Copy> {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}

// Also add it for the jar task
withType<Jar> {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
}

tasks.test {
Expand Down
Loading