Advertisement
VADMARK

Git ignore file for Java and JetBrains

Feb 13th, 2020
2,254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Java template
  3. # Compiled class file
  4. *.class
  5.  
  6. # Log file
  7. *.log
  8.  
  9. # BlueJ files
  10. *.ctxt
  11.  
  12. # Mobile Tools for Java (J2ME)
  13. .mtj.tmp/
  14.  
  15. # Package Files #
  16. *.jar
  17. *.war
  18. *.nar
  19. *.ear
  20. *.zip
  21. *.tar.gz
  22. *.rar
  23.  
  24. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  25. hs_err_pid*
  26.  
  27. ### JetBrains template
  28. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  29. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  30.  
  31. # User-specific stuff
  32. .idea/**/workspace.xml
  33. .idea/**/tasks.xml
  34. .idea/**/usage.statistics.xml
  35. .idea/**/dictionaries
  36. .idea/**/shelf
  37.  
  38. # Generated files
  39. .idea/**/contentModel.xml
  40.  
  41. # Sensitive or high-churn files
  42. .idea/**/dataSources/
  43. .idea/**/dataSources.ids
  44. .idea/**/dataSources.local.xml
  45. .idea/**/sqlDataSources.xml
  46. .idea/**/dynamic.xml
  47. .idea/**/uiDesigner.xml
  48. .idea/**/dbnavigator.xml
  49.  
  50. # Gradle
  51. .idea/**/gradle.xml
  52. .idea/**/libraries
  53.  
  54. # Gradle and Maven with auto-import
  55. # When using Gradle or Maven with auto-import, you should exclude module files,
  56. # since they will be recreated, and may cause churn.  Uncomment if using
  57. # auto-import.
  58. # .idea/artifacts
  59. # .idea/compiler.xml
  60. # .idea/modules.xml
  61. # .idea/*.iml
  62. # .idea/modules
  63. # *.iml
  64. # *.ipr
  65.  
  66. # CMake
  67. cmake-build-*/
  68.  
  69. # Mongo Explorer plugin
  70. .idea/**/mongoSettings.xml
  71.  
  72. # File-based project format
  73. *.iws
  74.  
  75. # IntelliJ
  76. out/
  77.  
  78. # mpeltonen/sbt-idea plugin
  79. .idea_modules/
  80.  
  81. # JIRA plugin
  82. atlassian-ide-plugin.xml
  83.  
  84. # Cursive Clojure plugin
  85. .idea/replstate.xml
  86.  
  87. # Crashlytics plugin (for Android Studio and IntelliJ)
  88. com_crashlytics_export_strings.xml
  89. crashlytics.properties
  90. crashlytics-build.properties
  91. fabric.properties
  92.  
  93. # Editor-based Rest Client
  94. .idea/httpRequests
  95.  
  96. # Android studio 3.1+ serialized cache file
  97. .idea/caches/build_file_checksums.ser
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement