.gitignore 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. # Created by https://www.gitignore.io/api/git,java,maven,macos,linux,windows,eclipse,netbeans,java-web,code-java,intellij+all
  2. # Edit at https://www.gitignore.io/?templates=git,java,maven,macos,linux,windows,eclipse,netbeans,java-web,code-java,intellij+all
  3. ### Code-Java ###
  4. # Language Support for Java(TM) by Red Hat extension for Visual Studio Code - https://marketplace.visualstudio.com/items?itemName=redhat.java
  5. .project
  6. .classpath
  7. factoryConfiguration.json
  8. ### Eclipse ###
  9. .metadata
  10. bin/
  11. tmp/
  12. *.tmp
  13. *.bak
  14. *.swp
  15. *~.nib
  16. local.properties
  17. .settings/
  18. .loadpath
  19. .recommenders
  20. # External tool builders
  21. .externalToolBuilders/
  22. # Locally stored "Eclipse launch configurations"
  23. *.launch
  24. # PyDev specific (Python IDE for Eclipse)
  25. *.pydevproject
  26. # CDT-specific (C/C++ Development Tooling)
  27. .cproject
  28. # CDT- autotools
  29. .autotools
  30. # Java annotation processor (APT)
  31. .factorypath
  32. # PDT-specific (PHP Development Tools)
  33. .buildpath
  34. # sbteclipse plugin
  35. .target
  36. # Tern plugin
  37. .tern-project
  38. # TeXlipse plugin
  39. .texlipse
  40. # STS (Spring Tool Suite)
  41. .springBeans
  42. # Code Recommenders
  43. .recommenders/
  44. # Annotation Processing
  45. .apt_generated/
  46. # Scala IDE specific (Scala & Java development for Eclipse)
  47. .cache-main
  48. .scala_dependencies
  49. .worksheet
  50. ### Eclipse Patch ###
  51. # Eclipse Core
  52. # JDT-specific (Eclipse Java Development Tools)
  53. # Annotation Processing
  54. .apt_generated
  55. .sts4-cache/
  56. ### Git ###
  57. # Created by git for backups. To disable backups in Git:
  58. # $ git config --global mergetool.keepBackup false
  59. *.orig
  60. # Created by git when using merge tools for conflicts
  61. *.BACKUP.*
  62. *.BASE.*
  63. *.LOCAL.*
  64. *.REMOTE.*
  65. *_BACKUP_*.txt
  66. *_BASE_*.txt
  67. *_LOCAL_*.txt
  68. *_REMOTE_*.txt
  69. ### Intellij+all ###
  70. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  71. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  72. # User-specific stuff
  73. .idea/**/workspace.xml
  74. .idea/**/tasks.xml
  75. .idea/**/usage.statistics.xml
  76. .idea/**/dictionaries
  77. .idea/**/shelf
  78. # Generated files
  79. .idea/**/contentModel.xml
  80. # Sensitive or high-churn files
  81. .idea/**/dataSources/
  82. .idea/**/dataSources.ids
  83. .idea/**/dataSources.local.xml
  84. .idea/**/sqlDataSources.xml
  85. .idea/**/dynamic.xml
  86. .idea/**/uiDesigner.xml
  87. .idea/**/dbnavigator.xml
  88. # Gradle
  89. .idea/**/gradle.xml
  90. .idea/**/libraries
  91. # Gradle and Maven with auto-import
  92. # When using Gradle or Maven with auto-import, you should exclude module files,
  93. # since they will be recreated, and may cause churn. Uncomment if using
  94. # auto-import.
  95. # .idea/modules.xml
  96. # .idea/*.iml
  97. # .idea/modules
  98. # CMake
  99. cmake-build-*/
  100. # Mongo Explorer plugin
  101. .idea/**/mongoSettings.xml
  102. # File-based project format
  103. *.iws
  104. # IntelliJ
  105. out/
  106. # mpeltonen/sbt-idea plugin
  107. .idea_modules/
  108. # JIRA plugin
  109. atlassian-ide-plugin.xml
  110. # Cursive Clojure plugin
  111. .idea/replstate.xml
  112. # Crashlytics plugin (for Android Studio and IntelliJ)
  113. com_crashlytics_export_strings.xml
  114. crashlytics.properties
  115. crashlytics-build.properties
  116. fabric.properties
  117. # Editor-based Rest Client
  118. .idea/httpRequests
  119. # Android studio 3.1+ serialized cache file
  120. .idea/caches/build_file_checksums.ser
  121. ### Intellij+all Patch ###
  122. # Ignores the whole .idea folder and all .iml files
  123. # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
  124. .idea/
  125. # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
  126. *.iml
  127. modules.xml
  128. .idea/misc.xml
  129. *.ipr
  130. # Sonarlint plugin
  131. .idea/sonarlint
  132. ### Java ###
  133. # Compiled class file
  134. *.class
  135. # Log file
  136. *.log
  137. # BlueJ files
  138. *.ctxt
  139. # Mobile Tools for Java (J2ME)
  140. .mtj.tmp/
  141. # Package Files #
  142. *.war
  143. *.nar
  144. *.ear
  145. *.zip
  146. *.tar.gz
  147. *.rar
  148. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  149. hs_err_pid*
  150. ### Java-Web ###
  151. ## ignoring target file
  152. target/
  153. ### Linux ###
  154. *~
  155. # temporary files which can be created if a process still has a handle open of a deleted file
  156. .fuse_hidden*
  157. # KDE directory preferences
  158. .directory
  159. # Linux trash folder which might appear on any partition or disk
  160. .Trash-*
  161. # .nfs files are created when an open file is removed but is still being accessed
  162. .nfs*
  163. ### macOS ###
  164. # General
  165. .DS_Store
  166. .AppleDouble
  167. .LSOverride
  168. # Icon must end with two \r
  169. Icon
  170. # Thumbnails
  171. ._*
  172. # Files that might appear in the root of a volume
  173. .DocumentRevisions-V100
  174. .fseventsd
  175. .Spotlight-V100
  176. .TemporaryItems
  177. .Trashes
  178. .VolumeIcon.icns
  179. .com.apple.timemachine.donotpresent
  180. # Directories potentially created on remote AFP share
  181. .AppleDB
  182. .AppleDesktop
  183. Network Trash Folder
  184. Temporary Items
  185. .apdisk
  186. ### Maven ###
  187. pom.xml.tag
  188. pom.xml.releaseBackup
  189. pom.xml.versionsBackup
  190. pom.xml.next
  191. release.properties
  192. dependency-reduced-pom.xml
  193. buildNumber.properties
  194. .mvn/timing.properties
  195. .mvn/wrapper/maven-wrapper.jar
  196. ### NetBeans ###
  197. **/nbproject/private/
  198. **/nbproject/Makefile-*.mk
  199. **/nbproject/Package-*.bash
  200. build/
  201. nbbuild/
  202. dist/
  203. nbdist/
  204. .nb-gradle/
  205. ### Windows ###
  206. # Windows thumbnail cache files
  207. Thumbs.db
  208. ehthumbs.db
  209. ehthumbs_vista.db
  210. # Dump file
  211. *.stackdump
  212. # Folder config file
  213. [Dd]esktop.ini
  214. # Recycle Bin used on file shares
  215. $RECYCLE.BIN/
  216. # Windows Installer files
  217. *.cab
  218. *.msi
  219. *.msix
  220. *.msm
  221. *.msp
  222. # Windows shortcuts
  223. *.lnk
  224. # End of https://www.gitignore.io/api/git,java,maven,macos,linux,windows,eclipse,netbeans,java-web,code-java,intellij+all
  225. *.yml