buildRelease.bat 549 Bytes
Newer Older
1
@echo off
2
echo %time:~0,8% Start
3

4 5
setlocal
cd ../..
6 7 8 9 10 11 12 13 14 15
set today=%date:~6%%date:~3,2%%date:~0,2%
rmdir /s /q ..\h2web-%today% 2>nul
rmdir /s /q ..\h2web 2>nul
mkdir ..\h2web

rmdir /s /q bin 2>nul
rmdir /s /q temp 2>nul

call java16 >nul 2>nul
call build -quiet compile
16
call build -quiet spellcheck javadocImpl jarClient
Thomas Mueller's avatar
Thomas Mueller committed
17
call build -quiet clean compile installer mavenDeployCentral
18

19
rem call build -quiet compile benchmark
20
rem == Copy the benchmark results and update the performance page and diagram
21 22

ren ..\h2web h2web-%today%
23 24

echo %time:~0,8% Done