From e05eae08fea14017d162258d9a27f67fd47af29b Mon Sep 17 00:00:00 2001 From: dahoud Date: Fri, 12 Dec 2025 17:39:39 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20Ajouter=20.gitignore=20sp=C3=A9cifique?= =?UTF-8?q?=20=C3=A0=20l'impl=C3=A9mentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..619202e --- /dev/null +++ b/.gitignore @@ -0,0 +1,133 @@ +# ============================================================================ +# Lions User Manager - Server Implementation Quarkus - .gitignore +# ============================================================================ + +# Maven +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +.mvn/wrapper/maven-wrapper.jar + +# Build artifacts +*.jar +*.war +*.ear +*.class +*.idx + +# Eclipse +.project +.classpath +.settings/ +.metadata/ +bin/ + +# IntelliJ IDEA +.idea/ +*.iml +*.iws +*.ipr +out/ + +# NetBeans +nbproject/ +nbbuild/ +nbdist/ +.nb-gradle/ + +# VS Code +.vscode/ +*.code-workspace + +# Mac +.DS_Store + +# Windows +Thumbs.db +ehthumbs.db +Desktop.ini + +# Logs +logs/ +*.log +*.log.* +hs_err_pid*.log + +# Quarkus +.quarkus/ +quarkus-app/ +quarkus-run.jar +quarkus-*.dat + +# Temporary files +*.tmp +*.bak +*.swp +*~ +*.orig + +# Test files and reports +test_output*.txt +surefire-reports/ +failsafe-reports/ +*.dump +*.dumpstream + +# Test coverage +.jacoco/ +jacoco.exec +coverage/ +target/site/jacoco/ + +# Application specific +application-local.properties +application-*.local.properties + +# Configuration files with sensitive data +*.local.json + +# Token and authentication files +token.json +token.txt +*.token + +# Generated sources +generated-sources/ +generated-test-sources/ + +# Maven status +maven-status/ + +# Build metrics +build-metrics.json + +# Quarkus Dev Services +.devservices/ + +# Fichiers META-INF générés (reflection-config.json est généré par Quarkus) +**/META-INF/reflection-config.json + +# IDE specific +*.sublime-project +*.sublime-workspace + +# OS specific +.DS_Store? +._* +.Spotlight-V100 +.Trashes + +# Lombok configuration (généré automatiquement) +lombok.config + +# Environment files +.env +.env.local +.env.*.local +