blob: 6a879ff5a704d9fe3d270be8d9140d0462152820 [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 "$@"
cp ../eclipse-formatter-config.xml .
fi
done
cd "${pwd}"
./mvnw org.l2x6.cq:cq-maven-plugin:0.33.0:update-examples-json