.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /classes/
  2. /test-classes/
  3. .classpath
  4. .project
  5. .settings/
  6. # Created by https://www.toptal.com/developers/gitignore/api/eclipse,maven,windows,java,git
  7. # Edit at https://www.toptal.com/developers/gitignore?templates=eclipse,maven,windows,java,git
  8. ### Eclipse ###
  9. .metadata
  10. bin/
  11. tmp/
  12. *.tmp
  13. *.bak
  14. *.swp
  15. *~.nib
  16. local.properties
  17. .settings/
  18. .loadpath
  19. .recommenders
  20. # External tool builders
  21. .externalToolBuilders/
  22. # Locally stored "Eclipse launch configurations"
  23. *.launch
  24. # PyDev specific (Python IDE for Eclipse)
  25. *.pydevproject
  26. # CDT-specific (C/C++ Development Tooling)
  27. .cproject
  28. # CDT- autotools
  29. .autotools
  30. # Java annotation processor (APT)
  31. .factorypath
  32. # PDT-specific (PHP Development Tools)
  33. .buildpath
  34. # sbteclipse plugin
  35. .target
  36. # Tern plugin
  37. .tern-project
  38. # TeXlipse plugin
  39. .texlipse
  40. # STS (Spring Tool Suite)
  41. .springBeans
  42. # Code Recommenders
  43. .recommenders/
  44. # Annotation Processing
  45. .apt_generated/
  46. .apt_generated_test/
  47. # Scala IDE specific (Scala & Java development for Eclipse)
  48. .cache-main
  49. .scala_dependencies
  50. .worksheet
  51. # Uncomment this line if you wish to ignore the project description file.
  52. # Typically, this file would be tracked if it contains build/dependency configurations:
  53. #.project
  54. ### Eclipse Patch ###
  55. # Spring Boot Tooling
  56. .sts4-cache/
  57. ### Git ###
  58. # Created by git for backups. To disable backups in Git:
  59. # $ git config --global mergetool.keepBackup false
  60. *.orig
  61. # Created by git when using merge tools for conflicts
  62. *.BACKUP.*
  63. *.BASE.*
  64. *.LOCAL.*
  65. *.REMOTE.*
  66. *_BACKUP_*.txt
  67. *_BASE_*.txt
  68. *_LOCAL_*.txt
  69. *_REMOTE_*.txt
  70. ### Java ###
  71. # Compiled class file
  72. *.class
  73. # Log file
  74. *.log
  75. # BlueJ files
  76. *.ctxt
  77. # Mobile Tools for Java (J2ME)
  78. .mtj.tmp/
  79. # Package Files #
  80. *.jar
  81. *.war
  82. *.nar
  83. *.ear
  84. *.zip
  85. *.tar.gz
  86. *.rar
  87. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  88. hs_err_pid*
  89. ### Maven ###
  90. target/
  91. pom.xml.tag
  92. pom.xml.releaseBackup
  93. pom.xml.versionsBackup
  94. pom.xml.next
  95. release.properties
  96. dependency-reduced-pom.xml
  97. buildNumber.properties
  98. .mvn/timing.properties
  99. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  100. .mvn/wrapper/maven-wrapper.jar
  101. ### Windows ###
  102. # Windows thumbnail cache files
  103. Thumbs.db
  104. Thumbs.db:encryptable
  105. ehthumbs.db
  106. ehthumbs_vista.db
  107. # Dump file
  108. *.stackdump
  109. # Folder config file
  110. [Dd]esktop.ini
  111. # Recycle Bin used on file shares
  112. $RECYCLE.BIN/
  113. # Windows Installer files
  114. *.cab
  115. *.msi
  116. *.msix
  117. *.msm
  118. *.msp
  119. # Windows shortcuts
  120. *.lnk
  121. # End of https://www.toptal.com/developers/gitignore/api/eclipse,maven,windows,java,git