Я делюсь с pom. xml моего установщика (установщика izapck), желая внедрить jre для развертывания моего приложения с jre, поэтому пользователю не потребуется устанавливать какую-либо jdk. Любая помощь?
<plugin>
<groupId>com.akathist.maven.plugins.launch4j</groupId>
<artifactId>launch4j-maven-plugin</artifactId>
<version>1.7.24</version>
<executions>
<execution>
<id>l4j-programmerinstall</id>
<phase>package</phase>
<goals>
<goal>launch4j</goal>
</goals>
<configuration>
<headerType>gui</headerType>
<icon>src/main/resources/launch4j/insticon.ico</icon>
<outfile>target/SetupSTM32CubeProgrammer.exe</outfile>
<jar>target/SetupSTM32CubeProgrammer-Installer.jar</jar>
<errTitle>STM32CubeProgrammer installation issue</errTitle>
<restartOnCrash>false</restartOnCrash>
<singleInstance>
<mutexName>ProgrammerInstallInstance</mutexName>
<windowTitle>Programmer Installation is already on going</windowTitle>
</singleInstance>
<jre>
<!--<minVersion>1.8.0</minVersion>
<maxVersion>10.99.99</maxVersion>-->
<path>$JAVA_PATH/jre</path>
<outfile>target/win64</outfile>
</jre>
<versionInfo>
<fileVersion>2.4.0.0</fileVersion>
<txtFileVersion>>${project.version}</txtFileVersion>
<fileDescription>STM32CubeProgrammer Installer</fileDescription>
<copyright>STMicroelectronics</copyright>
<productVersion>2.4.0.0</productVersion>
<txtProductVersion>>${project.version}</txtProductVersion>
<productName>STM32CubeProgrammer installer</productName>
<internalName>STM32CubeProgrammer installer</internalName>
<originalFilename>SetupSTM32CubeProgrammer.exe</originalFilename>
</versionInfo>
</configuration>
</execution>
</executions>
</plugin>
<plugin>