-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: icon and macos/windows packaging
- Loading branch information
1 parent
0de89a7
commit c3ae36c
Showing
7 changed files
with
9 additions
and
3 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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
mvn clean install -P osx,windows,windows-i586,windows-amd64,linux,linux-i586,linux-amd64 | ||
mvn clean install -Dbreakout.version="${BREAKOUT_VERSION}" |
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,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
javapackager -deploy -native msi -outdir packages -outfile Breakout \ | ||
-srcdir breakout/target -srcfiles breakout-0.0.0-SNAPSHOT.jar \ | ||
-appclass org.breakout.Breakout -name Breakout -title "Breakout Cave Survey" \ | ||
-BappVersion="${BREAKOUT_VERSION}" -Bicon=breakout.ico | ||
|