Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- rm -rf ~/.m2
- declare -a boosters=(
- "https://github.com/hrishin/vertxhttpbooster"
- "https://github.com/hrishin/vertxhttphealthcheck"
- "https://github.com/hrishin/fmp-test-5"
- "https://github.com/hrishin/springboothealthcheck"
- "https://github.com/hrishin/wildflyhttp"
- "https://github.com/hrishin/wildflyswarmhealthcheck"
- )
- for i in "${boosters[@]}"
- do
- echo $i
- mkdir ~/tmp-repository
- cd ~/tmp-repository
- git clone $i .
- mvn package -Popenshift -DskipTests
- rm -rf ~/tmp-repository
- done
Add Comment
Please, Sign In to add comment