Skip to content

Commit

Permalink
Add manifest item enabling native access (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
lopcode authored Aug 20, 2024
1 parent f8868f7 commit 8aac120
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ tasks.withType<JavaExec>().configureEach {
javaLauncher.set(project.javaToolchains.launcherFor(java.toolchain))
}

tasks.withType<Jar>().configureEach {
manifest {
attributes("Enable-Native-Access" to "ALL-UNNAMED")
}
}

dependencies {}

publishing {
Expand Down

0 comments on commit 8aac120

Please sign in to comment.