forked from thombergs/code-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-all.sh
More file actions
26 lines (22 loc) · 410 Bytes
/
build-all.sh
File metadata and controls
26 lines (22 loc) · 410 Bytes
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
chmod +x gradlew
./gradlew clean build --info
cd spring-boot/starter && {
chmod +x gradlew
./gradlew clean build --info
cd ../../
}
cd spring-boot/validation && {
chmod +x gradlew
./gradlew clean build --info
cd ../../
}
cd spring-boot/mocking && {
chmod +x gradlew
./gradlew clean build --info
cd ../../
}
cd patterns && {
chmod +x gradlew
./gradlew clean build --info
cd ../../
}