|
@@ -0,0 +1,86 @@
|
|
1
|
+# ---> Maven
|
|
2
|
+target/
|
|
3
|
+pom.xml.tag
|
|
4
|
+pom.xml.releaseBackup
|
|
5
|
+pom.xml.versionsBackup
|
|
6
|
+pom.xml.next
|
|
7
|
+release.properties
|
|
8
|
+dependency-reduced-pom.xml
|
|
9
|
+buildNumber.properties
|
|
10
|
+.mvn/timing.properties
|
|
11
|
+
|
|
12
|
+# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
|
|
13
|
+!/.mvn/wrapper/maven-wrapper.jar
|
|
14
|
+
|
|
15
|
+# ---> Java
|
|
16
|
+# Compiled class file
|
|
17
|
+*.class
|
|
18
|
+
|
|
19
|
+# Log file
|
|
20
|
+*.log
|
|
21
|
+
|
|
22
|
+# BlueJ files
|
|
23
|
+*.ctxt
|
|
24
|
+
|
|
25
|
+# Mobile Tools for Java (J2ME)
|
|
26
|
+.mtj.tmp/
|
|
27
|
+
|
|
28
|
+# Package Files #
|
|
29
|
+*.jar
|
|
30
|
+*.war
|
|
31
|
+*.ear
|
|
32
|
+*.zip
|
|
33
|
+*.tar.gz
|
|
34
|
+*.rar
|
|
35
|
+
|
|
36
|
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
37
|
+hs_err_pid*
|
|
38
|
+
|
|
39
|
+# ---> JetBrains
|
|
40
|
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
41
|
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
42
|
+
|
|
43
|
+# User-specific stuff:
|
|
44
|
+.idea/**/workspace.xml
|
|
45
|
+.idea/**/tasks.xml
|
|
46
|
+.idea/dictionaries
|
|
47
|
+
|
|
48
|
+# Sensitive or high-churn files:
|
|
49
|
+.idea/**/dataSources/
|
|
50
|
+.idea/**/dataSources.ids
|
|
51
|
+.idea/**/dataSources.xml
|
|
52
|
+.idea/**/dataSources.local.xml
|
|
53
|
+.idea/**/sqlDataSources.xml
|
|
54
|
+.idea/**/dynamic.xml
|
|
55
|
+.idea/**/uiDesigner.xml
|
|
56
|
+
|
|
57
|
+# Gradle:
|
|
58
|
+.idea/**/gradle.xml
|
|
59
|
+.idea/**/libraries
|
|
60
|
+
|
|
61
|
+# Mongo Explorer plugin:
|
|
62
|
+.idea/**/mongoSettings.xml
|
|
63
|
+
|
|
64
|
+## File-based project format:
|
|
65
|
+*.iws
|
|
66
|
+
|
|
67
|
+## Plugin-specific files:
|
|
68
|
+
|
|
69
|
+# IntelliJ
|
|
70
|
+/out/
|
|
71
|
+
|
|
72
|
+# mpeltonen/sbt-idea plugin
|
|
73
|
+.idea_modules/
|
|
74
|
+
|
|
75
|
+# JIRA plugin
|
|
76
|
+atlassian-ide-plugin.xml
|
|
77
|
+
|
|
78
|
+# Cursive Clojure plugin
|
|
79
|
+.idea/replstate.xml
|
|
80
|
+
|
|
81
|
+# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
82
|
+com_crashlytics_export_strings.xml
|
|
83
|
+crashlytics.properties
|
|
84
|
+crashlytics-build.properties
|
|
85
|
+fabric.properties
|
|
86
|
+
|