rohankanojia

Untitled

Feb 24th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.57 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. rm -rf ~/.m2
  4.  
  5. declare -a boosters=(
  6.   "https://github.com/hrishin/vertxhttpbooster"
  7.   "https://github.com/hrishin/vertxhttphealthcheck"
  8.   "https://github.com/hrishin/fmp-test-5"
  9.   "https://github.com/hrishin/springboothealthcheck"
  10.   "https://github.com/hrishin/wildflyhttp"
  11.   "https://github.com/hrishin/wildflyswarmhealthcheck"
  12. )
  13.  
  14. for i in "${boosters[@]}"
  15.     do
  16.         echo $i
  17.         mkdir ~/tmp-repository
  18.         cd ~/tmp-repository
  19.         git clone $i .
  20.         mvn package -Popenshift -DskipTests
  21.         rm -rf ~/tmp-repository
  22.     done
Add Comment
Please, Sign In to add comment