Commit 5ae51ba3 by Patryk Czarnik

Skrypt do budowania workspace (tylko porjekty mavenowe na Linux)

parent d6eb5a75
#!/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