Last active
October 14, 2015 20:30
-
-
Save jmayaalv/b4196b46385334bf0a27 to your computer and use it in GitHub Desktop.
Downloads all ms dependencies and installs it locally
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -x | |
BASE_DIR=$(pwd) | |
cd $BASE_DIR/common/beluca | |
git fetch origin common | |
git co common | |
git pull origin common | |
cd common | |
mvn clean install | |
cd $BASE_DIR/ms-calendar/beluca | |
git pull origin ms-calendar | |
git co ms-calendar | |
cd ms-calendar | |
mvn clean install | |
cd $BASE_DIR/ms-edge/beluca | |
git co ms-edge | |
git pull origin ms-edge | |
cd ms-edge | |
mvn clean install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment