1. #!/bin/sh
  2. if [ -f "$HOME/.profile" ]
  3. then
  4. . $HOME/.profile
  5. fi
  6. echo Updating Furnace...
  7. cd ~/projects/jboss/forge/furnace-parent && git pull && mvn clean install -DskipTests=true;
  8. echo Updating Furnace Container CDI ...
  9. cd ~/projects/jboss/forge/furnace-container-cdi && git pull && mvn clean install -DskipTests=true;
  10. echo Updating Furnace Container Simple ...
  11. cd ~/projects/jboss/forge/furnace-container-simple && git pull && mvn clean install -DskipTests=true;
  12. echo Updating Forge 2.x ...
  13. cd ~/projects/jboss/forge/core && git pull && mvn clean install -DskipTests=true;
  14. echo Updating JBossTools Forge ...
  15. cd ~/projects/jboss/forge/jbosstools-forge/plugins && git pull && mvn clean install -DskipTests=true;
  16. echo Updating Forge 1.x ...
  17. cd ~/projects/jboss/forge/core-1x && git pull && mvn clean install -DskipTests=true;