整理的Java工具包

.gitignore 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Maven template
  3. target/
  4. pom.xml.tag
  5. pom.xml.releaseBackup
  6. pom.xml.versionsBackup
  7. pom.xml.next
  8. release.properties
  9. dependency-reduced-pom.xml
  10. buildNumber.properties
  11. .mvn/timing.properties
  12. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  13. .mvn/wrapper/maven-wrapper.jar
  14. ### JetBrains template
  15. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  16. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  17. # User-specific stuff
  18. .idea/*
  19. # Gradle and Maven with auto-import
  20. # When using Gradle or Maven with auto-import, you should exclude module files,
  21. # since they will be recreated, and may cause churn. Uncomment if using
  22. # auto-import.
  23. # .idea/modules.xml
  24. # .idea/*.iml
  25. # .idea/modules
  26. *.iml
  27. *.log
  28. logs/
  29. # *.ipr
  30. # CMake
  31. cmake-build-*/
  32. # Mongo Explorer plugin
  33. .idea/**/mongoSettings.xml
  34. # File-based project format
  35. *.iws
  36. # IntelliJ
  37. out/
  38. # mpeltonen/sbt-idea plugin
  39. .idea_modules/
  40. # JIRA plugin
  41. atlassian-ide-plugin.xml
  42. # Cursive Clojure plugin
  43. .idea/replstate.xml
  44. # Crashlytics plugin (for Android Studio and IntelliJ)
  45. com_crashlytics_export_strings.xml
  46. crashlytics.properties
  47. crashlytics-build.properties
  48. fabric.properties
  49. # Editor-based Rest Client
  50. .idea/httpRequests
  51. # Android studio 3.1+ serialized cache file
  52. .idea/caches/build_file_checksums.ser
  53. ### Java template
  54. # Compiled class file
  55. *.class
  56. # Log file
  57. *.log
  58. # BlueJ files
  59. *.ctxt
  60. # Mobile Tools for Java (J2ME)
  61. .mtj.tmp/
  62. # Package Files #
  63. *.jar
  64. *.war
  65. *.nar
  66. *.ear
  67. *.zip
  68. *.tar.gz
  69. *.rar
  70. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  71. hs_err_pid*