.gitignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. ### Java template
  2. # Compiled class file
  3. *.class
  4. # Log file
  5. *.log
  6. # BlueJ files
  7. *.ctxt
  8. # Mobile Tools for Java (J2ME)
  9. .mtj.tmp/
  10. # Package Files #
  11. *.jar
  12. *.war
  13. *.nar
  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. ### Maven template
  21. target/
  22. pom.xml.tag
  23. pom.xml.releaseBackup
  24. pom.xml.versionsBackup
  25. pom.xml.next
  26. release.properties
  27. dependency-reduced-pom.xml
  28. buildNumber.properties
  29. .mvn/timing.properties
  30. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  31. .mvn/wrapper/maven-wrapper.jar
  32. ### VisualStudioCode template
  33. .vscode/*
  34. !.vscode/settings.json
  35. !.vscode/tasks.json
  36. !.vscode/launch.json
  37. !.vscode/extensions.json
  38. *.code-workspace
  39. # Local History for Visual Studio Code
  40. .history/
  41. ### JetBrains template
  42. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  43. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  44. # User-specific stuff
  45. .idea/**/workspace.xml
  46. .idea/**/tasks.xml
  47. .idea/**/usage.statistics.xml
  48. .idea/**/dictionaries
  49. .idea/**/shelf
  50. # Generated files
  51. .idea/**/contentModel.xml
  52. # Sensitive or high-churn files
  53. .idea/**/dataSources/
  54. .idea/**/dataSources.ids
  55. .idea/**/dataSources.local.xml
  56. .idea/**/sqlDataSources.xml
  57. .idea/**/dynamic.xml
  58. .idea/**/uiDesigner.xml
  59. .idea/**/dbnavigator.xml
  60. # Gradle
  61. .idea/**/gradle.xml
  62. .idea/**/libraries
  63. # Gradle and Maven with auto-import
  64. # When using Gradle or Maven with auto-import, you should exclude module files,
  65. # since they will be recreated, and may cause churn. Uncomment if using
  66. # auto-import.
  67. # .idea/artifacts
  68. # .idea/compiler.xml
  69. # .idea/jarRepositories.xml
  70. # .idea/modules.xml
  71. # .idea/*.iml
  72. # .idea/modules
  73. # *.iml
  74. # *.ipr
  75. # CMake
  76. cmake-build-*/
  77. # Mongo Explorer plugin
  78. .idea/**/mongoSettings.xml
  79. # File-based project format
  80. *.iws
  81. # IntelliJ
  82. out/
  83. # mpeltonen/sbt-idea plugin
  84. .idea_modules/
  85. # JIRA plugin
  86. atlassian-ide-plugin.xml
  87. # Cursive Clojure plugin
  88. .idea/replstate.xml
  89. # Crashlytics plugin (for Android Studio and IntelliJ)
  90. com_crashlytics_export_strings.xml
  91. crashlytics.properties
  92. crashlytics-build.properties
  93. fabric.properties
  94. # Editor-based Rest Client
  95. .idea/httpRequests
  96. # Android studio 3.1+ serialized cache file
  97. .idea/caches/build_file_checksums.ser
  98. ### Eclipse template
  99. .metadata
  100. bin/
  101. tmp/
  102. *.tmp
  103. *.bak
  104. *.swp
  105. *~.nib
  106. local.properties
  107. .settings/
  108. .loadpath
  109. .recommenders
  110. .project
  111. # External tool builders
  112. .externalToolBuilders/
  113. # Locally stored "Eclipse launch configurations"
  114. *.launch
  115. # PyDev specific (Python IDE for Eclipse)
  116. *.pydevproject
  117. # CDT-specific (C/C++ Development Tooling)
  118. .cproject
  119. # CDT- autotools
  120. .autotools
  121. # Java annotation processor (APT)
  122. .factorypath
  123. # PDT-specific (PHP Development Tools)
  124. .buildpath
  125. # sbteclipse plugin
  126. .target
  127. # Tern plugin
  128. .tern-project
  129. # TeXlipse plugin
  130. .texlipse
  131. # STS (Spring Tool Suite)
  132. .springBeans
  133. # Code Recommenders
  134. .recommenders/
  135. # Annotation Processing
  136. .apt_generated/
  137. .apt_generated_test/
  138. # Scala IDE specific (Scala & Java development for Eclipse)
  139. .cache-main
  140. .scala_dependencies
  141. .worksheet
  142. # Uncomment this line if you wish to ignore the project description file.
  143. # Typically, this file would be tracked if it contains build/dependency configurations:
  144. #.project
  145. ### Example user template template
  146. ### Example user template
  147. # IntelliJ project files
  148. .idea
  149. *.iml
  150. out
  151. gen