-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.bat
46 lines (36 loc) · 1.07 KB
/
build.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
echo ========================
echo ========================
echo Building declaration.
echo ========================
echo ========================
call mvn -f uberPom.xml install
echo ========================
echo ========================
echo Building artifacts.
echo ========================
echo ========================
call mvn -e -DskipTests=true clean install
echo ========================
echo ========================
echo Running clean.
echo ========================
echo ========================
call mvn clean
echo ========================
echo ========================
echo Building xts-sdk.
echo ========================
echo ========================
call cd xts-rest-api\xts-sdk
call mvn install
call cd ..\..
echo ========================
echo ========================
echo Building api-tester.
echo ========================
echo ========================
call cd xts-rest-api\api-example
call mvn install
call cd ..\..
call copy setEnv.bat xts-rest-api\xts-sdk\target
call copy setEnv.bat xts-rest-api\api-example\target