buildRelease.bat 711 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
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 java14 >nul 2>nul
14
call build -quiet
15 16 17

call java16 >nul 2>nul
call build -quiet compile
18
call build -quiet spellcheck javadocImpl jarClient
19

20
echo %time:~0,8% JDK 1.4
21
call java14 >nul 2>nul
22
call build -quiet clean compile
23
call build -quiet installer mavenDeployCentral
24

25
rem call build -quiet compile benchmark
26
rem == Copy the benchmark results and update the performance page and diagram
27 28

call java16 >nul 2>nul
29
call build -quiet switchSource
30
ren ..\h2web h2web-%today%
31 32

echo %time:~0,8% Done