Commit fcf6507d by Patryk Czarnik

Dodatkowy skrypt do budowania całego workspace (Linux/bash)

parent d50742a7
#!/bin/bash
goals="clean package"
for d in *
do
if test -f "$d/pom.xml"
then
cd "$d"
echo "!! Building $d !!"
mvn -D maven.test.skip $goals
echo "================================"
cd ..
fi
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment