.gitignore 3.5 KB

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