refactor: Déplacer .gitignore vers chaque sous-projet et améliorer la configuration d'ignorance
This commit is contained in:
130
.gitignore
vendored
Normal file
130
.gitignore
vendored
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
# ============================================================================
|
||||||
|
# Lions User Manager - Client Quarkus PrimeFaces Freya - .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/
|
||||||
|
|
||||||
|
# Node modules (si utilisé pour le build frontend)
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Build metrics
|
||||||
|
build-metrics.json
|
||||||
|
|
||||||
|
# Quarkus Dev Services
|
||||||
|
.devservices/
|
||||||
|
|
||||||
|
# IDE specific
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# OS specific
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
|
||||||
|
# Environment files
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
Reference in New Issue
Block a user