mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 09:50:32 +01:00
18 lines
356 B
Batchfile
18 lines
356 B
Batchfile
|
@echo off
|
||
|
rem Check if the jar has been built.
|
||
|
set TARGET_JAR=build-checkpoints.jar
|
||
|
|
||
|
if not exist "target/%TARGET_JAR%" goto BUILD
|
||
|
goto RUN
|
||
|
|
||
|
:BUILD
|
||
|
|
||
|
echo Compiling BuildCheckpoints to a JAR
|
||
|
cd ..
|
||
|
call mvn package -DskipTests
|
||
|
cd tools
|
||
|
|
||
|
: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
|