Skip to content

Instantly share code, notes, and snippets.

@paulbrodner
Created January 29, 2018 08:54
Show Gist options
  • Select an option

  • Save paulbrodner/acd74a33e9506ccf1cd696e0b640babc to your computer and use it in GitHub Desktop.

Select an option

Save paulbrodner/acd74a33e9506ccf1cd696e0b640babc to your computer and use it in GitHub Desktop.
compile.sh maven projects
#!/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