I am migrating my development environment from a PC with Windows 7 to one with Windows 10.
I can no longer run the packaging to create the executable bundle. The error I get is the following:
Bundler Windows Application Image skipped because of a configuration problem: This copy of the JDK does not support Windows.
I'm using
call "%JAVA_HOME%\bin\java.exe" ^
-Xmx1024M ^
--module-path "%JAVA_HOME%\jmods" ^
--add-opens jdk.jlink/jdk.tools.jlink.internal.packager=jdk.packager ^
-m jdk.packager/jdk.packager.Main ^
create-image ^
--verbose ^
--echo-mode ^
--input "%INPUT%" ^
--main-jar "%JAR%" ^
--output "%OUTPUT%" ^
--name "Name" ^
--icon "%ICON%"
Have any idea?