.gitignore 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. ######################
  2. # 解决java产生文件
  3. ######################
  4. *.class
  5. # Mobile Tools for Java (J2ME)
  6. .mtj.tmp/
  7. # Package Files #
  8. *.jar
  9. *.war
  10. *.ear
  11. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  12. hs_err_pid*
  13. ######################
  14. # 解决maven产生的文件
  15. ######################
  16. target/
  17. **/target/
  18. pom.xml.tag
  19. pom.xml.releaseBackup
  20. pom.xml.versionsBackup
  21. pom.xml.next
  22. release.properties
  23. dependency-reduced-pom.xml
  24. buildNumber.properties
  25. .mvn/timing.properties
  26. ######################
  27. # 解决各类编辑器自动产生的文件
  28. ######################
  29. *.iml
  30. ## Directory-based project format:
  31. .idea/
  32. # if you remove the above rule, at least ignore the following:
  33. # User-specific stuff:
  34. # .idea/workspace.xml
  35. # .idea/tasks.xml
  36. # .idea/dictionaries
  37. # Sensitive or high-churn files:
  38. # .idea/dataSources.ids
  39. # .idea/dataSources.xml
  40. # .idea/sqlDataSources.xml
  41. # .idea/dynamic.xml
  42. # .idea/uiDesigner.xml
  43. # Gradle:
  44. # .idea/gradle.xml
  45. # .idea/libraries
  46. # Mongo Explorer plugin:
  47. # .idea/mongoSettings.xml
  48. ## File-based project format:
  49. *.ipr
  50. *.iws
  51. ## Plugin-specific files:
  52. # IntelliJ
  53. /out/
  54. /target/
  55. # mpeltonen/sbt-idea plugin
  56. .idea_modules/
  57. # JIRA plugin
  58. atlassian-ide-plugin.xml
  59. # Crashlytics plugin (for Android Studio and IntelliJ)
  60. com_crashlytics_export_strings.xml
  61. crashlytics.properties
  62. crashlytics-build.properties