mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-12-15 07:52:58 -05:00
Add iss and dll files
This commit is contained in:
parent
8be2fc80be
commit
3f2531960b
11 changed files with 85 additions and 25 deletions
25
package/linux/build_create_app.sh
Normal file
25
package/linux/build_create_app.sh
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#!/bin/bash
|
||||
|
||||
mvn clean package -DskipTests -Dmaven.javadoc.skip=true
|
||||
cp gui/target/shaded.jar gui/updatefx/builds/1.jar
|
||||
|
||||
# edit url
|
||||
java -jar ./updatefx/updatefx-app-1.2.jar --url=http://localhost:8000/ gui/updatefx
|
||||
|
||||
# Note: fakeroot needs to be installed on linux
|
||||
$JAVA_HOME/bin/javapackager \
|
||||
-deploy \
|
||||
-BappVersion=0.1 \
|
||||
-Bcategory=Finance \
|
||||
-Bemail=info@bitsquare.io \
|
||||
-BlicenseType=GPLv3 \
|
||||
-native deb \
|
||||
-name Bitsquare \
|
||||
-title Bitsquare \
|
||||
-vendor Bitsquare \
|
||||
-outdir gui/deploy \
|
||||
-srcfiles gui/updatefx/builds/processed/1.jar \
|
||||
-appclass io.bitsquare.app.gui.BitsquareAppMain \
|
||||
-outfile Bitsquare
|
||||
|
||||
# TODO icons: -Bicon=client/icons/icon.png \
|
||||
Loading…
Add table
Add a link
Reference in a new issue