blob: 7f003aa296d6982eb2b9b8200b9673784daa5038 [file] [log] [blame]
#!/usr/bin/env bash
# Iterates over all available examples and calls mvnd with the specified arguments for each of them
set -x
set -e
pwd="$(pwd)"
for moduleDir in $(ls -d */)
do
if [ -f "${pwd}/${moduleDir}/pom.xml" ]; then
cd "${pwd}/${moduleDir}"
../mvnw "$@"
fi
done