Wallet tool launcher for Windows

Essentially it is just a port of wallet-tool bash script
This commit is contained in:
Kosta Korenkov 2014-06-24 14:26:03 +04:00 committed by Mike Hearn
parent 09286a932c
commit 215ecbfa21
2 changed files with 22 additions and 1 deletions

View File

@ -12,4 +12,4 @@ if [ ! -e target/bitcoinj-tools-*.jar ] || [[ "$ALWAYS_BUILD_WALLETTOOL" != "" ]
mvn package -DskipTests
fi
java -server -jar target/bitcoinj-tools-*.jar $*
java -jar target/bitcoinj-tools-*.jar $*

21
tools/wallet-tool.cmd Normal file
View File

@ -0,0 +1,21 @@
@echo off
rem Check if the jar has been built.
set TARGET_JAR=bitcoinj-tools-*.jar
if not exist "target/%TARGET_JAR%" goto BUILD
if defined ALWAYS_BUILD_WALLETTOOL goto BUILD
goto RUN
:BUILD
echo Compiling WalletTool to a JAR
cd ../core
call mvn install -DskipTests
cd ../tools
if exist "target/%TARGET_JAR%" del "target\%TARGET_JAR%"
call mvn package -DskipTests
:RUN
for /R "target/" %%F in (%TARGET_JAR%) do set JAR_NAME=%%~nxF
java -jar "target/%JAR_NAME%" %1 %2 %3 %4 %5 %6 %7 %8