forked from spring-attic/spring-mobile-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci.sh
executable file
·25 lines (22 loc) · 836 Bytes
/
ci.sh
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
#!/bin/sh
cd $(dirname $0)
function build {
./$1/ci.sh
ret=$?
if [ $ret -ne 0 ]; then
exit $ret
fi
}
build lite-device-resolver
build lite-site-preference-handler-jsp
build lite-device-delegating-view-resolver
build lite-device-delegating-view-resolver-jsp
build archive/java-configuration/lite-device-resolver-jc
build archive/java-configuration/lite-site-preference-handler-jc
build archive/java-configuration/lite-device-delegating-view-resolver-jc
build archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf
build archive/java-configuration/lite-site-switcher-handler-jc-mdot
build archive/java-configuration/lite-site-switcher-handler-jc-urlpath
build archive/xml-configuration/lite-device-resolver-xml
build archive/xml-configuration/lite-device-delegating-view-resolver-xml
exit