2017-06-28 00:54:58 +02:00
|
|
|
:: Invoke from bisq home directory
|
|
|
|
:: edit iss file -> AppVersion
|
|
|
|
:: edit -> -BappVersion and -srcfiles
|
|
|
|
|
|
|
|
:: 64 bit build
|
|
|
|
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
|
|
|
|
2017-11-08 11:11:51 -05:00
|
|
|
SET version=0.6.0
|
2017-06-28 00:54:58 +02:00
|
|
|
|
|
|
|
:: Private setup
|
|
|
|
SET outdir=\\VBOXSVR\vm_shared_windows
|
|
|
|
:: Others might use the following
|
|
|
|
:: SET outdir=.
|
|
|
|
|
|
|
|
call "%JAVA_HOME%\bin\javapackager.exe" -deploy ^
|
|
|
|
-BappVersion="%version%" ^
|
|
|
|
-native exe ^
|
|
|
|
-name Bisq ^
|
|
|
|
-title Bisq ^
|
|
|
|
-vendor Bisq ^
|
|
|
|
-outdir %outdir% ^
|
|
|
|
-appclass io.bisq.gui.app.BisqAppMain ^
|
|
|
|
-srcfiles %outdir%\Bisq.jar ^
|
|
|
|
-outfile Bisq ^
|
|
|
|
-Bruntime="%JAVA_HOME%\jre"
|
2017-11-08 11:11:51 -05:00
|
|
|
|
|
|
|
:: when we have support for security manager we use that
|
2017-06-28 00:54:58 +02:00
|
|
|
:: -BjvmOptions=-Djava.security.manager ^
|
|
|
|
:: -BjvmOptions=-Djava.security.debug=failure ^
|
|
|
|
:: -BjvmOptions=-Djava.security.policy=file:bisq.policy ^
|
|
|
|
|
|
|
|
:: -srcfiles "core/src/main/resources/bisq.policy" ^
|