You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 718B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # ---- Gradle
  2. build/
  3. .gradle/
  4. out/
  5. # ---- Maven (in integration tests)
  6. target/
  7. # ---- IntelliJ IDEA
  8. *.iws
  9. *.iml
  10. *.ipr
  11. .idea/
  12. out/
  13. # Directories generated on build on Windows
  14. bin/
  15. # ---- Eclipse
  16. .classpath
  17. .project
  18. .settings
  19. .externalToolBuilders
  20. # ---- Mac OS X
  21. .DS_Store
  22. Icon?
  23. # Thumbnails
  24. ._*
  25. # Files that might appear on external disk
  26. .Spotlight-V100
  27. .Trashes
  28. # ---- Windows
  29. # Windows image file caches
  30. Thumbs.db
  31. # Folder config file
  32. Desktop.ini
  33. # ---- vscode
  34. .vscode
  35. # ---- Sonar
  36. .sonar/
  37. # scripts patches, they are local to each developer
  38. scripts/patches/*.*
  39. scripts/patches/*license*.txt
  40. !scripts/patches/debug_ce.sh
  41. !scripts/patches/debug_web.sh
  42. !scripts/patches/mysql.sh
  43. !scripts/patches/postgres.sh