Last active
July 12, 2023 20:30
-
-
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)
This file contains 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 | |
#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