.gitignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. replay_pid*
  21. ### Maven template
  22. target/
  23. pom.xml.tag
  24. pom.xml.releaseBackup
  25. pom.xml.versionsBackup
  26. pom.xml.next
  27. release.properties
  28. dependency-reduced-pom.xml
  29. buildNumber.properties
  30. .mvn/timing.properties
  31. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  32. .mvn/wrapper/maven-wrapper.jar
  33. # Eclipse m2e generated files
  34. # Eclipse Core
  35. .project
  36. # JDT-specific (Eclipse Java Development Tools)
  37. .classpath
  38. ### JetBrains template
  39. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  40. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  41. # User-specific stuff
  42. .idea/**/workspace.xml
  43. .idea/**/tasks.xml
  44. .idea/**/usage.statistics.xml
  45. .idea/**/dictionaries
  46. .idea/**/shelf
  47. # AWS User-specific
  48. .idea/**/aws.xml
  49. # Generated files
  50. .idea/**/contentModel.xml
  51. # Sensitive or high-churn files
  52. .idea/**/dataSources/
  53. .idea/**/dataSources.ids
  54. .idea/**/dataSources.local.xml
  55. .idea/**/sqlDataSources.xml
  56. .idea/**/dynamic.xml
  57. .idea/**/uiDesigner.xml
  58. .idea/**/dbnavigator.xml
  59. # Gradle
  60. .idea/**/gradle.xml
  61. .idea/**/libraries
  62. # Gradle and Maven with auto-import
  63. # When using Gradle or Maven with auto-import, you should exclude module files,
  64. # since they will be recreated, and may cause churn. Uncomment if using
  65. # auto-import.
  66. # .idea/artifacts
  67. # .idea/compiler.xml
  68. # .idea/jarRepositories.xml
  69. # .idea/modules.xml
  70. # .idea/*.iml
  71. # .idea/modules
  72. # *.iml
  73. # *.ipr
  74. # CMake
  75. cmake-build-*/
  76. # Mongo Explorer plugin
  77. .idea/**/mongoSettings.xml
  78. # File-based project format
  79. *.iws
  80. # IntelliJ
  81. out/
  82. # mpeltonen/sbt-idea plugin
  83. .idea_modules/
  84. # JIRA plugin
  85. atlassian-ide-plugin.xml
  86. # Cursive Clojure plugin
  87. .idea/replstate.xml
  88. # SonarLint plugin
  89. .idea/sonarlint/
  90. # Crashlytics plugin (for Android Studio and IntelliJ)
  91. com_crashlytics_export_strings.xml
  92. crashlytics.properties
  93. crashlytics-build.properties
  94. fabric.properties
  95. # Editor-based Rest Client
  96. .idea/httpRequests
  97. # Android studio 3.1+ serialized cache file
  98. .idea/caches/build_file_checksums.ser
  99. ### Eclipse template
  100. .metadata
  101. bin/
  102. tmp/
  103. *.tmp
  104. *.bak
  105. *.swp
  106. *~.nib
  107. local.properties
  108. .settings/
  109. .loadpath
  110. .recommenders
  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. # Ignore the release build folder.
  146. /release/