Created
January 29, 2018 08:54
-
-
Save paulbrodner/acd74a33e9506ccf1cd696e0b640babc to your computer and use it in GitHub Desktop.
compile.sh maven projects
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
| #!/usr/bin/env bash | |
| set -e | |
| tasProjects=("alfresco-tas-utility" | |
| "alfresco-tas-restapi-test" | |
| "alfresco-tas-cmis-test") | |
| for project in "${tasProjects[@]}" | |
| do | |
| : | |
| mvn clean install -DskipTests -f $project/pom.xml | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment