.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. # ---> Maven
  12. target/
  13. pom.xml.tag
  14. pom.xml.releaseBackup
  15. pom.xml.versionsBackup
  16. pom.xml.next
  17. release.properties
  18. dependency-reduced-pom.xml
  19. buildNumber.properties
  20. .mvn/timing.properties
  21. # ---> Eclipse
  22. *.pydevproject
  23. .metadata
  24. .gradle
  25. bin/
  26. tmp/
  27. *.tmp
  28. *.bak
  29. *.swp
  30. *~.nib
  31. local.properties
  32. .settings/
  33. .loadpath
  34. # Eclipse Core
  35. .project
  36. # External tool builders
  37. .externalToolBuilders/
  38. # Locally stored "Eclipse launch configurations"
  39. *.launch
  40. # CDT-specific
  41. .cproject
  42. # JDT-specific (Eclipse Java Development Tools)
  43. .classpath
  44. # Java annotation processor (APT)
  45. .factorypath
  46. # PDT-specific
  47. .buildpath
  48. # sbteclipse plugin
  49. .target
  50. # TeXlipse plugin
  51. .texlipse
  52. # ---> JDeveloper
  53. # default application storage directory used by the IDE Performance Cache feature
  54. .data/
  55. # used for ADF styles caching
  56. temp/
  57. # default output directories
  58. classes/
  59. deploy/
  60. javadoc/
  61. # lock file, a part of Oracle Credential Store Framework
  62. cwallet.sso.lck
  63. # ---> JetBrains
  64. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  65. *.iml
  66. ## Directory-based project format:
  67. .idea/
  68. # if you remove the above rule, at least ignore the following:
  69. # User-specific stuff:
  70. # .idea/workspace.xml
  71. # .idea/tasks.xml
  72. # .idea/dictionaries
  73. # Sensitive or high-churn files:
  74. # .idea/dataSources.ids
  75. # .idea/dataSources.xml
  76. # .idea/sqlDataSources.xml
  77. # .idea/dynamic.xml
  78. # .idea/uiDesigner.xml
  79. # Gradle:
  80. # .idea/gradle.xml
  81. # .idea/libraries
  82. # Mongo Explorer plugin:
  83. # .idea/mongoSettings.xml
  84. ## File-based project format:
  85. *.ipr
  86. *.iws
  87. ## Plugin-specific files:
  88. # IntelliJ
  89. /out/
  90. # mpeltonen/sbt-idea plugin
  91. .idea_modules/
  92. # JIRA plugin
  93. atlassian-ide-plugin.xml
  94. # Crashlytics plugin (for Android Studio and IntelliJ)
  95. com_crashlytics_export_strings.xml
  96. crashlytics.properties
  97. crashlytics-build.properties