Commit 9bc05647 by Patryk Czarnik

Więcej w gitignore

parent 77248684
*.class
/.metadata/
/RemoteSystemsTempFiles/
/Servers/
/local/
/.sonarlint/
*.class
# w razie gdyby ktos zaimportowal cale repo jako projekt
/.project
/.classpath
/.settings/
/bin/
/*.iml
/.idea/
/out/
#!/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