.gitignore 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Java template
  3. # Compiled class file
  4. *.class
  5. # Log file
  6. *.log
  7. # BlueJ files
  8. *.ctxt
  9. # Mobile Tools for Java (J2ME)
  10. .mtj.tmp/
  11. # Package Files #
  12. *.jar
  13. *.war
  14. *.ear
  15. *.zip
  16. *.tar.gz
  17. *.rar
  18. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  19. hs_err_pid*
  20. ### Eclipse template
  21. .metadata
  22. bin/
  23. tmp/
  24. *.tmp
  25. *.bak
  26. *.swp
  27. *~.nib
  28. local.properties
  29. .settings/
  30. .loadpath
  31. .recommenders
  32. # Eclipse Core
  33. .project
  34. # External tool builders
  35. .externalToolBuilders/
  36. # Locally stored "Eclipse launch configurations"
  37. *.launch
  38. # PyDev specific (Python IDE for Eclipse)
  39. *.pydevproject
  40. # CDT-specific (C/C++ Development Tooling)
  41. .cproject
  42. # JDT-specific (Eclipse Java Development Tools)
  43. .classpath
  44. # Java annotation processor (APT)
  45. .factorypath
  46. # PDT-specific (PHP Development Tools)
  47. .buildpath
  48. # sbteclipse plugin
  49. .target
  50. # Tern plugin
  51. .tern-project
  52. # TeXlipse plugin
  53. .texlipse
  54. # STS (Spring Tool Suite)
  55. .springBeans
  56. # Code Recommenders
  57. .recommenders/
  58. # Scala IDE specific (Scala & Java development for Eclipse)
  59. .cache-main
  60. .scala_dependencies
  61. .worksheet
  62. ### macOS template
  63. *.DS_Store
  64. .AppleDouble
  65. .LSOverride
  66. # Icon must end with two \r
  67. Icon
  68. # Thumbnails
  69. ._*
  70. # Files that might appear in the root of a volume
  71. .DocumentRevisions-V100
  72. .fseventsd
  73. .Spotlight-V100
  74. .TemporaryItems
  75. .Trashes
  76. .VolumeIcon.icns
  77. .com.apple.timemachine.donotpresent
  78. # Directories potentially created on remote AFP share
  79. .AppleDB
  80. .AppleDesktop
  81. Network Trash Folder
  82. Temporary Items
  83. .apdisk
  84. #Intellij files
  85. .idea
  86. *.iml
  87. #maven build target
  88. target/