-
Notifications
You must be signed in to change notification settings - Fork 171
/
build-without-tests.bat
61 lines (42 loc) · 1.55 KB
/
build-without-tests.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
call mvn clean install -f command-bus-api
if errorlevel 1 exit /B 1
call mvn clean install -f command-bus
if errorlevel 1 exit /B 1
call mvn clean install -f policy-service-api
if errorlevel 1 exit /B 1
call mvn clean install -f documents-service-api
if errorlevel 1 exit /B 1
call mvn clean install -f payment-service-api
if errorlevel 1 exit /B 1
call mvn clean install -f policy-search-service-api
if errorlevel 1 exit /B 1
call mvn clean install -f pricing-service-api
if errorlevel 1 exit /B 1
call mvn clean install -f product-service-api
if errorlevel 1 exit /B 1
call mvn clean install -f dashboard-service-api
if errorlevel 1 exit /B 1
call mvn clean install -f auth-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f policy-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f payment-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f policy-search-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f pricing-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f product-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f documents-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f dashboard-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f chat-service -DskipTests
if errorlevel 1 exit /B 1
call mvn clean install -f agent-portal-gateway -DskipTests
if errorlevel 1 exit /B 1
call yarn --cwd web-vue install
if errorlevel 1 exit /B 1
call yarn --cwd web-vue run build
if errorlevel 1 exit /B 1