.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. # Created by https://www.gitignore.io/api/java,maven,intellij+all
  2. # Edit at https://www.gitignore.io/?templates=java,maven,intellij+all
  3. ### Intellij+all ###
  4. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  5. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  6. # User-specific stuff
  7. .idea/**/workspace.xml
  8. .idea/**/tasks.xml
  9. .idea/**/usage.statistics.xml
  10. .idea/**/dictionaries
  11. .idea/**/shelf
  12. # Generated files
  13. .idea/**/contentModel.xml
  14. # Sensitive or high-churn files
  15. .idea/**/dataSources/
  16. .idea/**/dataSources.ids
  17. .idea/**/dataSources.local.xml
  18. .idea/**/sqlDataSources.xml
  19. .idea/**/dynamic.xml
  20. .idea/**/uiDesigner.xml
  21. .idea/**/dbnavigator.xml
  22. # Gradle
  23. .idea/**/gradle.xml
  24. .idea/**/libraries
  25. # Gradle and Maven with auto-import
  26. # When using Gradle or Maven with auto-import, you should exclude module files,
  27. # since they will be recreated, and may cause churn. Uncomment if using
  28. # auto-import.
  29. # .idea/modules.xml
  30. # .idea/*.iml
  31. # .idea/modules
  32. # *.iml
  33. # *.ipr
  34. # CMake
  35. cmake-build-*/
  36. # Mongo Explorer plugin
  37. .idea/**/mongoSettings.xml
  38. # File-based project format
  39. *.iws
  40. # IntelliJ
  41. out/
  42. # mpeltonen/sbt-idea plugin
  43. .idea_modules/
  44. # JIRA plugin
  45. atlassian-ide-plugin.xml
  46. # Cursive Clojure plugin
  47. .idea/replstate.xml
  48. # Crashlytics plugin (for Android Studio and IntelliJ)
  49. com_crashlytics_export_strings.xml
  50. crashlytics.properties
  51. crashlytics-build.properties
  52. fabric.properties
  53. # Editor-based Rest Client
  54. .idea/httpRequests
  55. # Android studio 3.1+ serialized cache file
  56. .idea/caches/build_file_checksums.ser
  57. ### Intellij+all Patch ###
  58. # Ignores the whole .idea folder and all .iml files
  59. # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
  60. .idea/
  61. # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
  62. *.iml
  63. modules.xml
  64. .idea/misc.xml
  65. *.ipr
  66. # Sonarlint plugin
  67. .idea/sonarlint
  68. ### Java ###
  69. # Compiled class file
  70. *.class
  71. # Log file
  72. *.log
  73. # BlueJ files
  74. *.ctxt
  75. # Mobile Tools for Java (J2ME)
  76. .mtj.tmp/
  77. # Package Files #
  78. *.jar
  79. *.war
  80. *.nar
  81. *.ear
  82. *.zip
  83. *.tar.gz
  84. *.rar
  85. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  86. hs_err_pid*
  87. ### Maven ###
  88. target/
  89. pom.xml.tag
  90. pom.xml.releaseBackup
  91. pom.xml.versionsBackup
  92. pom.xml.next
  93. release.properties
  94. dependency-reduced-pom.xml
  95. buildNumber.properties
  96. .mvn/timing.properties
  97. .mvn/wrapper/maven-wrapper.jar
  98. .flattened-pom.xml
  99. # End of https://www.gitignore.io/api/java,maven,intellij+all