-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch4j.xml
27 lines (22 loc) · 1.04 KB
/
launch4j.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<launch4jConfig>
<!-- The JAR file that you want to convert to an EXE -->
<jar>target/gs-maven-0.1.0.jar</jar>
<!-- The output EXE file that will be generated -->
<outfile>target/MDCstudentSIMULATOR.exe</outfile>
<!-- GUI application type -->
<headerType>gui</headerType> <!-- Use 'console' for command-line applications -->
<!-- Error handling and process behavior -->
<errTitle>Application Error</errTitle>
<cmdLine></cmdLine>
<chdir>.</chdir>
<priority>normal</priority>
<!-- Optionally, you can specify an icon for the EXE -->
<icon></icon> <!-- Path to a .ico file if you want a custom icon for your EXE -->
<!-- JRE Configuration -->
<jre>
<minVersion>1.8.0</minVersion> <!-- Specify the minimum Java version required -->
<maxVersion></maxVersion> <!-- No maximum Java version -->
<bundledJreAsFallback>false</bundledJreAsFallback> <!-- Disable fallback if no bundled JRE -->
<runtimeBits>64/32</runtimeBits> <!-- Supports both 32-bit and 64-bit JREs -->
</jre>
</launch4jConfig>