.gitignore 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. ### macOS template
  2. # General
  3. .DS_Store
  4. .AppleDouble
  5. .LSOverride
  6. # Icon must end with two \r
  7. # Icon
  8. # Thumbnails
  9. ._*
  10. # Files that might appear in the root of a volume
  11. .DocumentRevisions-V100
  12. .fseventsd
  13. .Spotlight-V100
  14. .TemporaryItems
  15. .Trashes
  16. .VolumeIcon.icns
  17. .com.apple.timemachine.donotpresent
  18. # Directories potentially created on remote AFP share
  19. .AppleDB
  20. .AppleDesktop
  21. Network Trash Folder
  22. Temporary Items
  23. .apdisk
  24. ### Maven template
  25. target/
  26. pom.xml.tag
  27. pom.xml.releaseBackup
  28. pom.xml.versionsBackup
  29. pom.xml.next
  30. release.properties
  31. dependency-reduced-pom.xml
  32. buildNumber.properties
  33. .mvn/timing.properties
  34. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  35. .mvn/wrapper/maven-wrapper.jar
  36. ### JetBrains template
  37. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  38. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  39. # User-specific stuff
  40. .idea/**/workspace.xml
  41. .idea/**/tasks.xml
  42. .idea/**/usage.statistics.xml
  43. .idea/**/dictionaries
  44. .idea/**/shelf
  45. # Generated files
  46. .idea/**/contentModel.xml
  47. # Sensitive or high-churn files
  48. .idea/**/dataSources/
  49. .idea/**/dataSources.ids
  50. .idea/**/dataSources.local.xml
  51. .idea/**/sqlDataSources.xml
  52. .idea/**/dynamic.xml
  53. .idea/**/uiDesigner.xml
  54. .idea/**/dbnavigator.xml
  55. # Gradle
  56. .idea/**/gradle.xml
  57. .idea/**/libraries
  58. # Gradle and Maven with auto-import
  59. # When using Gradle or Maven with auto-import, you should exclude module files,
  60. # since they will be recreated, and may cause churn. Uncomment if using
  61. # auto-import.
  62. # .idea/artifacts
  63. # .idea/compiler.xml
  64. # .idea/jarRepositories.xml
  65. # .idea/modules.xml
  66. # .idea/*.iml
  67. # .idea/modules
  68. *.iml
  69. *.ipr
  70. .idea/
  71. # CMake
  72. cmake-build-*/
  73. # Mongo Explorer plugin
  74. .idea/**/mongoSettings.xml
  75. # File-based project format
  76. *.iws
  77. # IntelliJ
  78. out/
  79. # mpeltonen/sbt-idea plugin
  80. .idea_modules/
  81. # JIRA plugin
  82. atlassian-ide-plugin.xml
  83. # Cursive Clojure plugin
  84. .idea/replstate.xml
  85. # Crashlytics plugin (for Android Studio and IntelliJ)
  86. com_crashlytics_export_strings.xml
  87. crashlytics.properties
  88. crashlytics-build.properties
  89. fabric.properties
  90. # Editor-based Rest Client
  91. .idea/httpRequests
  92. # Android studio 3.1+ serialized cache file
  93. .idea/caches/build_file_checksums.ser
  94. ### Linux template
  95. *~
  96. # temporary files which can be created if a process still has a handle open of a deleted file
  97. .fuse_hidden*
  98. # KDE directory preferences
  99. .directory
  100. # Linux trash folder which might appear on any partition or disk
  101. .Trash-*
  102. # .nfs files are created when an open file is removed but is still being accessed
  103. .nfs*
  104. ### Eclipse template
  105. # > the following should be created by `./gradlew eclipse`
  106. .classpath
  107. .project
  108. .metadata
  109. bin/
  110. tmp/
  111. *.tmp
  112. *.bak
  113. *.swp
  114. *~.nib
  115. local.properties
  116. .settings/
  117. .loadpath
  118. .recommenders
  119. # External tool builders
  120. .externalToolBuilders/
  121. # Locally stored "Eclipse launch configurations"
  122. *.launch
  123. # PyDev specific (Python IDE for Eclipse)
  124. *.pydevproject
  125. # CDT-specific (C/C++ Development Tooling)
  126. .cproject
  127. # CDT- autotools
  128. .autotools
  129. # Java annotation processor (APT)
  130. .factorypath
  131. # PDT-specific (PHP Development Tools)
  132. .buildpath
  133. # sbteclipse plugin
  134. .target
  135. # Tern plugin
  136. .tern-project
  137. # TeXlipse plugin
  138. .texlipse
  139. # STS (Spring Tool Suite)
  140. .springBeans
  141. # Code Recommenders
  142. .recommenders/
  143. # Annotation Processing
  144. .apt_generated/
  145. .apt_generated_test/
  146. # Scala IDE specific (Scala & Java development for Eclipse)
  147. .cache-main
  148. .scala_dependencies
  149. .worksheet
  150. # Uncomment this line if you wish to ignore the project description file.
  151. # Typically, this file would be tracked if it contains build/dependency configurations:
  152. #.project
  153. ### Windows template
  154. # Windows thumbnail cache files
  155. Thumbs.db
  156. Thumbs.db:encryptable
  157. ehthumbs.db
  158. ehthumbs_vista.db
  159. # Dump file
  160. *.stackdump
  161. # Folder config file
  162. [Dd]esktop.ini
  163. # Recycle Bin used on file shares
  164. $RECYCLE.BIN/
  165. # Windows Installer files
  166. *.cab
  167. *.msi
  168. *.msix
  169. *.msm
  170. *.msp
  171. # Windows shortcuts
  172. *.lnk
  173. ### Java template
  174. # Compiled class file
  175. *.class
  176. # Log file
  177. *.log
  178. # BlueJ files
  179. *.ctxt
  180. # Mobile Tools for Java (J2ME)
  181. .mtj.tmp/
  182. # Package Files #
  183. *.jar
  184. *.war
  185. *.nar
  186. *.ear
  187. *.zip
  188. *.tar.gz
  189. *.rar
  190. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  191. hs_err_pid*
  192. /tip-front/src/main/webapp/tc_ttp/common/i18n/
  193. # jrebel files
  194. rebel.xml