Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Add missing JDK modules to runtime (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi authored Jun 8, 2022
1 parent 83719ed commit 308d64c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
### Removed

### Fixed
- Add missing JDK modules

### Security

Expand Down Expand Up @@ -121,4 +122,4 @@
- Add proper `CHANGELOG.md`

### Fixed
- Fix installer not including Rust binaries
- Fix installer not including Rust binaries
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
}

group = "dev.nycode"
version = "0.6.0"
version = "0.6.1"

repositories {
google()
Expand Down Expand Up @@ -113,7 +113,10 @@ compose.desktop {
jvmArgs += listOf("-Ddev.nycode.omsi_launcher.release")

nativeDistributions {
modules("java.naming")
modules(
"java.naming", // Logback
"jdk.unsupported" // LWJGL NFD
)
targetFormats(TargetFormat.Msi)

appResourcesRootDir.set(project("fs-util").buildDir.resolve("binaries"))
Expand Down

0 comments on commit 308d64c

Please sign in to comment.