Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable SHC Validation 2 #142

Merged
merged 7 commits into from
Sep 5, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix too many entries in zip error
  • Loading branch information
dotasek committed Sep 5, 2023
commit 17dde9ab7d0c6ee80afc3429d61eaeba6eb6ac07
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ task("printVersion") {


tasks.withType<Jar> {
setProperty("zip64", true)
duplicatesStrategy = DuplicatesStrategy.INCLUDE

manifest {
Expand Down Expand Up @@ -233,7 +234,7 @@ application {

// include JS artifacts in any JAR we generate
tasks.getByName<Jar>("jvmJar") {
setProperty("zip64", true)

val taskName = if (project.hasProperty("isProduction")) {
"jsBrowserProductionWebpack"
} else {
Expand Down
Loading