forked from dromara/MaxKey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.bat
More file actions
21 lines (12 loc) · 422 Bytes
/
release.bat
File metadata and controls
21 lines (12 loc) · 422 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
call setEnvVars.bat
set START_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
echo start time %START_TIME%
call %GRADLE_HOME%/bin/gradle -q projects
echo start clean . . .
call %GRADLE_HOME%/bin/gradle clean
echo clean complete .
rem run task build
call %GRADLE_HOME%/bin/gradle build -x test
set END_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
echo Build Release start at %START_TIME% complete at %END_TIME%.
pause