Serban Iordache

Results 113 comments of Serban Iordache

Can you post your build.gradle?

In 2.22.2 I made a change to prevent the StackOverflowException. However, I'm not 100% sure that this fix solves the problem, because I cannot reproduce the issue. Please give it...

Thanks! I was able to reproduce the StackOverflowException and checked that it no longer occurs when using org.beryx.jlink 2.22.2. However, I suspect that you didn't configure a module-info.java for your...

I'm afraid there are no examples. It can be done with [update4j](https://github.com/update4j/update4j), but I didn't use it yet, so I can't help with details. Because update4j needs to replace some...

There is no [jpackage](https://openjdk.java.net/jeps/343) option for doing this, so you need to configure Gradle to take care of moving the libraries: ``` tasks.jpackageImage.doLast { def appName = jpackageData.imageName def dir...

I don't see anything wrong in your build.gradle. If you can upload to GitHub an example project that allows reproducing this issue, I will investigate further.

Add `requires jdk.localedata;` to your module-info.java.

Or, if you don't want to change your module-info.java, add the `jdk.localedata` module to the jlink options: ``` jlink { options = ['--add-modules', 'jdk.localedata', '--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages'] launcher...

I don't have a good answer to this question. Locales other than English are made available via a service, for which an implementation is provided by the jdk.localedata module. This...

@kittylyst @vewert The jvmArgs issue was a regression introduced in 2.24.2. It's fixed in release 2.24.3. @kittylyst Use Gradle 7.2 to get rid of the `Unsupported class file major version...