Commit 929ffd09 by Patryk Czarnik

Utworzenie repozytorium

parents
*.class
/.metadata/
/RemoteSystemsTempFiles/
/Servers/
/local/
/.sonarlint/
# w razie gdyby ktos zaimportowal cale repo jako projekt
/.project
/.classpath
/.settings/
/bin/
/*.iml
/.idea/
/out/
/.gitattributes
#!/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
# Java 2 Backend
Przykłady z kursu ALX Java 2 Backend od 12 kwietnia 2025
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