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 1016B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # ---- Gradle
  2. build/
  3. .gradle/
  4. .gradletasknamecache
  5. classes/
  6. out/
  7. # ---- Maven (in integration tests)
  8. target/
  9. # ---- IntelliJ IDEA
  10. *.iws
  11. *.iml
  12. *.ipr
  13. .idea/
  14. out/
  15. # ---- VS Code
  16. .vscode/
  17. *.code-workspace
  18. # Directories generated on build on Windows
  19. bin/
  20. !sonar-application/src/main/assembly/elasticsearch/**/bin/
  21. !sonar-application/src/main/assembly/elasticsearch-patch/**/bin/
  22. # npm logs
  23. npm-debug.log*
  24. npm.tar.gz
  25. yarn-debug.log*
  26. yarn-error.log*
  27. # ---- Eclipse
  28. .classpath
  29. .project
  30. .settings
  31. .externalToolBuilders
  32. # ---- Mac OS X
  33. .DS_Store
  34. Icon?
  35. # Thumbnails
  36. ._*
  37. # Files that might appear on external disk
  38. .Spotlight-V100
  39. .Trashes
  40. # ---- Windows
  41. # Windows image file caches
  42. Thumbs.db
  43. # Folder config file
  44. Desktop.ini
  45. # ---- frontend
  46. node/
  47. node_modules/
  48. # ---- SonarQube
  49. .sonar/
  50. .scannerwork/
  51. # scripts patches, they are local to each developer
  52. scripts/patches/*.*
  53. scripts/patches/*license*.txt
  54. !scripts/patches/debug_ce.sh
  55. !scripts/patches/debug_web.sh
  56. !scripts/patches/mysql.sh
  57. !scripts/patches/postgres.sh