Skip to content

Instantly share code, notes, and snippets.

@gastaldi
Last active July 12, 2023 20:30
Show Gist options
  • Save gastaldi/6352018 to your computer and use it in GitHub Desktop.
Save gastaldi/6352018 to your computer and use it in GitHub Desktop.
Bash Script to update all the needed repositories from Forge 2.x (and Forge 1)
#!/bin/sh
#echo Updating Aesh ...
#cd ~/workspace/aesh && git pull && mvn clean install -DskipTests;
echo Updating Furnace...
cd ~/workspace/furnace-parent && git pull && mvn clean install -DskipTests;
echo Updating Furnace CDI ...
cd ~/workspace/furnace-cdi && git pull && mvn clean install -DskipTests;
echo Updating Furnace Simple...
cd ~/workspace/furnace-simple && git pull && mvn clean install -DskipTests;
echo Updating Forge 2.x ...
cd ~/workspace/forge-core-2.0 && git pull && mvn clean install -DskipTests;
echo Updating Forge Eclipse Plugin ...
cd ~/workspace/jbosstools-forge/plugins && git pull && mvn clean verify -DskipTests;
#echo Updating Forge 1.x ...
#cd ~/workspace/forge-core && git pull && mvn clean install -DskipTests;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment