112 lines
1.1 KiB
Plaintext
112 lines
1.1 KiB
Plaintext
# Maven
|
||
target/
|
||
pom.xml.tag
|
||
pom.xml.releaseBackup
|
||
pom.xml.versionsBackup
|
||
release.properties
|
||
.flattened-pom.xml
|
||
|
||
# Eclipse
|
||
.project
|
||
.classpath
|
||
.settings/
|
||
bin/
|
||
|
||
# IntelliJ
|
||
.idea/
|
||
*.ipr
|
||
*.iml
|
||
*.iws
|
||
|
||
# NetBeans
|
||
nb-configuration.xml
|
||
nbproject/
|
||
nbactions.xml
|
||
|
||
# Visual Studio Code
|
||
.vscode/
|
||
.factorypath
|
||
|
||
# OSX
|
||
.DS_Store
|
||
|
||
# Windows
|
||
Thumbs.db
|
||
Desktop.ini
|
||
|
||
# Vim
|
||
*.swp
|
||
*.swo
|
||
|
||
# patch
|
||
*.orig
|
||
*.rej
|
||
|
||
# Local environment
|
||
.env
|
||
.env.local
|
||
.env.*
|
||
|
||
# Quarkus
|
||
.quarkus/
|
||
/.quarkus/cli/plugins/
|
||
quarkus.log
|
||
hs_err_pid*
|
||
|
||
# Application Specific
|
||
.certs/
|
||
.certificates/
|
||
*.jks
|
||
*.p12
|
||
|
||
# Logs
|
||
*.log
|
||
log/
|
||
logs/
|
||
|
||
# Temporary files
|
||
*~
|
||
*.bak
|
||
*.tmp
|
||
temp/
|
||
|
||
# Node (in case you add frontend tools later)
|
||
node_modules/
|
||
npm-debug.log
|
||
yarn-debug.log
|
||
yarn-error.log
|
||
|
||
# Build output
|
||
dist/
|
||
build/
|
||
out/
|
||
|
||
# Application specific properties
|
||
src/main/resources/application-*.properties
|
||
!src/main/resources/application.properties
|
||
|
||
# Compiled files
|
||
*.class
|
||
*.jar
|
||
*.war
|
||
*.ear
|
||
*.zip
|
||
*.tar.gz
|
||
*.rar
|
||
|
||
# Test coverage
|
||
/coverage/
|
||
.nyc_output/
|
||
|
||
# Maven Wrapper
|
||
.mvn/
|
||
mvnw
|
||
mvnw.cmd
|
||
|
||
# Docker
|
||
.dockerignores |