-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2593de8
commit 48f1404
Showing
2 changed files
with
39 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<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> | ||
|
||
<!-- Main class that contains the 'public static void main(String[] args)' method --> | ||
<manifest> | ||
<mainClass>com.example.MainClass</mainClass> <!-- Replace with your actual main class --> | ||
</manifest> | ||
|
||
<!-- Settings related to the generated EXE file --> | ||
<headerType>gui</headerType> <!-- 'gui' if it's a graphical application, 'console' for command-line --> | ||
<errTitle>Application Error</errTitle> | ||
<cmdLine></cmdLine> | ||
<chdir>.</chdir> | ||
<priority>normal</priority> | ||
<downloadUrl></downloadUrl> | ||
<supportUrl></supportUrl> | ||
<stayAlive>false</stayAlive> | ||
<restartOnCrash>false</restartOnCrash> | ||
|
||
<!-- 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 --> | ||
</launch4jConfig> |