.gitignore 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. # Created by https://www.toptal.com/developers/gitignore/api/git,java,maven,eclipse,sonarqube,intellij+all,visualstudiocode
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=git,java,maven,eclipse,sonarqube,intellij+all,visualstudiocode
  3. ### Eclipse ###
  4. .metadata
  5. bin/
  6. tmp/
  7. *.tmp
  8. *.bak
  9. *.swp
  10. *~.nib
  11. local.properties
  12. .settings/
  13. .loadpath
  14. .recommenders
  15. # External tool builders
  16. .externalToolBuilders/
  17. # Locally stored "Eclipse launch configurations"
  18. *.launch
  19. # PyDev specific (Python IDE for Eclipse)
  20. *.pydevproject
  21. # CDT-specific (C/C++ Development Tooling)
  22. .cproject
  23. # CDT- autotools
  24. .autotools
  25. # Java annotation processor (APT)
  26. .factorypath
  27. # PDT-specific (PHP Development Tools)
  28. .buildpath
  29. # sbteclipse plugin
  30. .target
  31. # Tern plugin
  32. .tern-project
  33. # TeXlipse plugin
  34. .texlipse
  35. # STS (Spring Tool Suite)
  36. .springBeans
  37. # Code Recommenders
  38. .recommenders/
  39. # Annotation Processing
  40. .apt_generated/
  41. .apt_generated_test/
  42. # Scala IDE specific (Scala & Java development for Eclipse)
  43. .cache-main
  44. .scala_dependencies
  45. .worksheet
  46. # Uncomment this line if you wish to ignore the project description file.
  47. # Typically, this file would be tracked if it contains build/dependency configurations:
  48. #.project
  49. ### Eclipse Patch ###
  50. # Spring Boot Tooling
  51. .sts4-cache/
  52. ### Git ###
  53. # Created by git for backups. To disable backups in Git:
  54. # $ git config --global mergetool.keepBackup false
  55. *.orig
  56. # Created by git when using merge tools for conflicts
  57. *.BACKUP.*
  58. *.BASE.*
  59. *.LOCAL.*
  60. *.REMOTE.*
  61. *_BACKUP_*.txt
  62. *_BASE_*.txt
  63. *_LOCAL_*.txt
  64. *_REMOTE_*.txt
  65. ### Intellij+all ###
  66. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  67. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  68. # User-specific stuff
  69. .idea/**/workspace.xml
  70. .idea/**/tasks.xml
  71. .idea/**/usage.statistics.xml
  72. .idea/**/dictionaries
  73. .idea/**/shelf
  74. # AWS User-specific
  75. .idea/**/aws.xml
  76. # Generated files
  77. .idea/**/contentModel.xml
  78. # Sensitive or high-churn files
  79. .idea/**/dataSources/
  80. .idea/**/dataSources.ids
  81. .idea/**/dataSources.local.xml
  82. .idea/**/sqlDataSources.xml
  83. .idea/**/dynamic.xml
  84. .idea/**/uiDesigner.xml
  85. .idea/**/dbnavigator.xml
  86. # Gradle
  87. .idea/**/gradle.xml
  88. .idea/**/libraries
  89. # Gradle and Maven with auto-import
  90. # When using Gradle or Maven with auto-import, you should exclude module files,
  91. # since they will be recreated, and may cause churn. Uncomment if using
  92. # auto-import.
  93. # .idea/artifacts
  94. # .idea/compiler.xml
  95. # .idea/jarRepositories.xml
  96. # .idea/modules.xml
  97. # .idea/*.iml
  98. # .idea/modules
  99. # *.iml
  100. # *.ipr
  101. # CMake
  102. cmake-build-*/
  103. # Mongo Explorer plugin
  104. .idea/**/mongoSettings.xml
  105. # File-based project format
  106. *.iws
  107. # IntelliJ
  108. out/
  109. # mpeltonen/sbt-idea plugin
  110. .idea_modules/
  111. # JIRA plugin
  112. atlassian-ide-plugin.xml
  113. # Cursive Clojure plugin
  114. .idea/replstate.xml
  115. # SonarLint plugin
  116. .idea/sonarlint/
  117. # Crashlytics plugin (for Android Studio and IntelliJ)
  118. com_crashlytics_export_strings.xml
  119. crashlytics.properties
  120. crashlytics-build.properties
  121. fabric.properties
  122. # Editor-based Rest Client
  123. .idea/httpRequests
  124. # Android studio 3.1+ serialized cache file
  125. .idea/caches/build_file_checksums.ser
  126. ### Intellij+all Patch ###
  127. # Ignore everything but code style settings and run configurations
  128. # that are supposed to be shared within teams.
  129. .idea/*
  130. !.idea/codeStyles
  131. !.idea/runConfigurations
  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. *.jar
  143. *.war
  144. *.nar
  145. *.ear
  146. *.zip
  147. *.tar.gz
  148. *.rar
  149. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  150. hs_err_pid*
  151. replay_pid*
  152. ### Maven ###
  153. target/
  154. pom.xml.tag
  155. pom.xml.releaseBackup
  156. pom.xml.versionsBackup
  157. pom.xml.next
  158. release.properties
  159. dependency-reduced-pom.xml
  160. buildNumber.properties
  161. .mvn/timing.properties
  162. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  163. .mvn/wrapper/maven-wrapper.jar
  164. # Eclipse m2e generated files
  165. # Eclipse Core
  166. .project
  167. # JDT-specific (Eclipse Java Development Tools)
  168. .classpath
  169. ### SonarQube ###
  170. # SonarQube ignore files.
  171. #
  172. # https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner
  173. # Sonar Scanner working directories
  174. .sonar/
  175. .sonarqube/
  176. .scannerwork/
  177. # http://www.sonarlint.org/commandline/
  178. # SonarLint working directories, configuration files (including credentials)
  179. .sonarlint/
  180. ### VisualStudioCode ###
  181. .vscode/*
  182. !.vscode/settings.json
  183. !.vscode/tasks.json
  184. !.vscode/launch.json
  185. !.vscode/extensions.json
  186. !.vscode/*.code-snippets
  187. # Local History for Visual Studio Code
  188. .history/
  189. # Built Visual Studio Code Extensions
  190. *.vsix
  191. ### VisualStudioCode Patch ###
  192. # Ignore all local history of files
  193. .history
  194. .ionide
  195. # End of https://www.toptal.com/developers/gitignore/api/git,java,maven,eclipse,sonarqube,intellij+all,visualstudiocode
  196. .asciidoctor/
  197. .flattened-pom.xml
  198. logs/