.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # ---> Java
  2. *.class
  3. # Mobile Tools for Java (J2ME)
  4. .mtj.tmp/
  5. # Package Files #
  6. *.jar
  7. *.war
  8. *.ear
  9. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  10. hs_err_pid*
  11. # ---> JetBrains
  12. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  13. *.iml
  14. ## Directory-based project format:
  15. .idea/
  16. # if you remove the above rule, at least ignore the following:
  17. # User-specific stuff:
  18. # .idea/workspace.xml
  19. # .idea/tasks.xml
  20. # .idea/dictionaries
  21. # Sensitive or high-churn files:
  22. # .idea/dataSources.ids
  23. # .idea/dataSources.xml
  24. # .idea/sqlDataSources.xml
  25. # .idea/dynamic.xml
  26. # .idea/uiDesigner.xml
  27. # Gradle:
  28. # .idea/gradle.xml
  29. # .idea/libraries
  30. # Mongo Explorer plugin:
  31. # .idea/mongoSettings.xml
  32. ## File-based project format:
  33. *.ipr
  34. *.iws
  35. ## Plugin-specific files:
  36. # IntelliJ
  37. /out/
  38. # mpeltonen/sbt-idea plugin
  39. .idea_modules/
  40. # JIRA plugin
  41. atlassian-ide-plugin.xml
  42. # Crashlytics plugin (for Android Studio and IntelliJ)
  43. com_crashlytics_export_strings.xml
  44. crashlytics.properties
  45. crashlytics-build.properties
  46. # ---> macOS
  47. .DS_Store
  48. .AppleDouble
  49. .LSOverride
  50. # Icon must end with two \r
  51. Icon
  52. # Thumbnails
  53. ._*
  54. # Files that might appear in the root of a volume
  55. .DocumentRevisions-V100
  56. .fseventsd
  57. .Spotlight-V100
  58. .TemporaryItems
  59. .Trashes
  60. .VolumeIcon.icns
  61. # Directories potentially created on remote AFP share
  62. .AppleDB
  63. .AppleDesktop
  64. Network Trash Folder
  65. Temporary Items
  66. .apdisk
  67. # ---> Windows
  68. # Windows image file caches
  69. Thumbs.db
  70. ehthumbs.db
  71. # Folder config file
  72. Desktop.ini
  73. # Recycle Bin used on file shares
  74. $RECYCLE.BIN/
  75. # Windows Installer files
  76. *.cab
  77. *.msi
  78. *.msm
  79. *.msp
  80. # Windows shortcuts
  81. *.lnk
  82. # Log4J logging
  83. *.log
  84. ### Gradle ###
  85. .gradle
  86. /build/
  87. # Ignore Gradle GUI config
  88. gradle-app.setting
  89. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  90. !gradle-wrapper.jar
  91. # Cache of project
  92. .gradletasknamecache
  93. # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
  94. # gradle/wrapper/gradle-wrapper.properties
  95. # End of https://www.gitignore.io/api/java,gradle
  96. /bin/