mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-12 00:53:05 -04:00
25 lines
No EOL
677 B
Bash
25 lines
No EOL
677 B
Bash
#!/bin/bash
|
|
|
|
cd ../../
|
|
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
|
|
|
|
$JAVA_HOME/bin/javapackager \
|
|
-deploy \
|
|
-BappVersion=0.1.1-SNAPSHOT \
|
|
-Bmac.CFBundleIdentifier=bitsquare \
|
|
-Bmac.CFBundleName=Bitsquare \
|
|
-Bruntime="$JAVA_HOME/../../" \
|
|
-native dmg \
|
|
-name Bitsquare \
|
|
-title Bitsquare \
|
|
-vendor Bitsquare \
|
|
-outdir gui/deploy \
|
|
-srcfiles gui/updatefx/builds/processed/1.jar \
|
|
-appclass io.bitsquare.app.gui.BitsquareAppMain \
|
|
-outfile Bitsquare
|
|
|
|
cd package/mac |