Skip to content

Commit

Permalink
Ignore strict java zip validation from Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikoBecker committed Jul 26, 2023
1 parent c1c07ef commit 968b549
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ tasks {
}

val build_allScripts by registering(BuildLanguages::class) {
doFirst {
System.setProperty("jdk.nio.zipfs.allowDotZipEntry", "true");
System.setProperty("jdk.util.zip.disableZip64ExtraFieldValidation", "true");
}
dependsOn(resolveMps, resolveLanguageLibs)
script = "$buildDir/scripts/build_all_scripts.xml"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This file is expected to be part of source control.
com.jetbrains.jdk:jbr_jcef:11_0_12-b1504.28=jbrLinux,jbrMac,jbrWin
com.jetbrains:mps:2022.2=mps
com.mbeddr:platform:2022.2.23905.edb7e44=languageLibs
com.mbeddr:platform:2022.2.23910.af50257=languageLibs
junit:junit:4.12=antLib
org.apache.ant:ant-junit:1.10.6=antLib
org.apache.ant:ant-launcher:1.10.6=antLib
Expand Down

0 comments on commit 968b549

Please sign in to comment.