.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. # ---> Java
  2. *.class
  3. # Mobile Tools for Java (J2ME)
  4. .mtj.tmp/
  5. # Package Files #
  6. *.jar
  7. *.war
  8. *.ear
  9. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  10. hs_err_pid*
  11. # ---> Windows
  12. # Windows image file caches
  13. Thumbs.db
  14. ehthumbs.db
  15. # Folder config file
  16. Desktop.ini
  17. # Recycle Bin used on file shares
  18. $RECYCLE.BIN/
  19. # Windows Installer files
  20. *.cab
  21. *.msi
  22. *.msm
  23. *.msp
  24. # Windows shortcuts
  25. *.lnk
  26. # ---> macOS
  27. .DS_Store
  28. .AppleDouble
  29. .LSOverride
  30. # Icon must end with two \r
  31. Icon
  32. # Thumbnails
  33. ._*
  34. # Files that might appear in the root of a volume
  35. .DocumentRevisions-V100
  36. .fseventsd
  37. .Spotlight-V100
  38. .TemporaryItems
  39. .Trashes
  40. .VolumeIcon.icns
  41. # Directories potentially created on remote AFP share
  42. .AppleDB
  43. .AppleDesktop
  44. Network Trash Folder
  45. Temporary Items
  46. .apdisk
  47. # ---> Eclipse
  48. *.pydevproject
  49. .metadata
  50. .gradle
  51. bin/
  52. tmp/
  53. *.tmp
  54. *.bak
  55. *.swp
  56. *~.nib
  57. local.properties
  58. .settings/
  59. .loadpath
  60. # Eclipse Core
  61. .project
  62. # External tool builders
  63. .externalToolBuilders/
  64. # Locally stored "Eclipse launch configurations"
  65. *.launch
  66. # CDT-specific
  67. .cproject
  68. # JDT-specific (Eclipse Java Development Tools)
  69. .classpath
  70. # Java annotation processor (APT)
  71. .factorypath
  72. # PDT-specific
  73. .buildpath
  74. # sbteclipse plugin
  75. .target
  76. # TeXlipse plugin
  77. .texlipse
  78. # ---> Maven
  79. target/
  80. pom.xml.tag
  81. pom.xml.releaseBackup
  82. pom.xml.versionsBackup
  83. pom.xml.next
  84. release.properties
  85. dependency-reduced-pom.xml
  86. buildNumber.properties
  87. .mvn/timing.properties