.gitignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. target/
  2. .vscode/### 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. *.nar
  15. *.ear
  16. *.zip
  17. *.tar.gz
  18. *.rar
  19. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  20. hs_err_pid*
  21. ### Maven template
  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. # External tool builders
  111. .externalToolBuilders/
  112. # Locally stored "Eclipse launch configurations"
  113. *.launch
  114. # PyDev specific (Python IDE for Eclipse)
  115. *.pydevproject
  116. # CDT-specific (C/C++ Development Tooling)
  117. .cproject
  118. # CDT- autotools
  119. .autotools
  120. # Java annotation processor (APT)
  121. .factorypath
  122. # PDT-specific (PHP Development Tools)
  123. .buildpath
  124. # sbteclipse plugin
  125. .target
  126. # Tern plugin
  127. .tern-project
  128. # TeXlipse plugin
  129. .texlipse
  130. # STS (Spring Tool Suite)
  131. .springBeans
  132. # Code Recommenders
  133. .recommenders/
  134. # Annotation Processing
  135. .apt_generated/
  136. .apt_generated_test/
  137. # Scala IDE specific (Scala & Java development for Eclipse)
  138. .cache-main
  139. .scala_dependencies
  140. .worksheet
  141. # Uncomment this line if you wish to ignore the project description file.
  142. # Typically, this file would be tracked if it contains build/dependency configurations:
  143. #.project
  144. ### Example user template template
  145. ### Example user template
  146. # IntelliJ project files
  147. .idea
  148. *.iml
  149. out
  150. gen
  151. ### Includes
  152. !lib/*