1
+ # Created by https://www.gitignore.io/api/java,macos,gradle,intellij+all
2
+ # Edit at https://www.gitignore.io/?templates=java,macos,gradle,intellij+all
3
+
4
+ # ## Intellij+all ###
5
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
6
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7
+
8
+ # User-specific stuff
9
+ .idea /** /workspace.xml
10
+ .idea /** /tasks.xml
11
+ .idea /** /usage.statistics.xml
12
+ .idea /** /dictionaries
13
+ .idea /** /shelf
14
+
15
+ # Generated files
16
+ .idea /** /contentModel.xml
17
+
18
+ # Sensitive or high-churn files
19
+ .idea /** /dataSources /
20
+ .idea /** /dataSources.ids
21
+ .idea /** /dataSources.local.xml
22
+ .idea /** /sqlDataSources.xml
23
+ .idea /** /dynamic.xml
24
+ .idea /** /uiDesigner.xml
25
+ .idea /** /dbnavigator.xml
26
+
27
+ # Gradle
28
+ .idea /** /gradle.xml
29
+ .idea /** /libraries
30
+
31
+ # Gradle and Maven with auto-import
32
+ # When using Gradle or Maven with auto-import, you should exclude module files,
33
+ # since they will be recreated, and may cause churn. Uncomment if using
34
+ # auto-import.
35
+ # .idea/modules.xml
36
+ # .idea/*.iml
37
+ # .idea/modules
38
+ # *.iml
39
+ # *.ipr
40
+
41
+ # CMake
42
+ cmake-build- * /
43
+
44
+ # Mongo Explorer plugin
45
+ .idea /** /mongoSettings.xml
46
+
47
+ # File-based project format
48
+ * .iws
49
+
50
+ # IntelliJ
51
+ out /
52
+
53
+ # mpeltonen/sbt-idea plugin
54
+ .idea_modules /
55
+
56
+ # JIRA plugin
57
+ atlassian-ide-plugin.xml
58
+
59
+ # Cursive Clojure plugin
60
+ .idea /replstate.xml
61
+
62
+ # Crashlytics plugin (for Android Studio and IntelliJ)
63
+ com_crashlytics_export_strings.xml
64
+ crashlytics.properties
65
+ crashlytics-build.properties
66
+ fabric.properties
67
+
68
+ # Editor-based Rest Client
69
+ .idea /httpRequests
70
+
71
+ # Android studio 3.1+ serialized cache file
72
+ .idea /caches /build_file_checksums.ser
73
+
74
+ # ## Intellij+all Patch ###
75
+ # Ignores the whole .idea folder and all .iml files
76
+ # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
77
+
78
+ .idea /
79
+
80
+ # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
81
+
82
+ * .iml
83
+ modules.xml
84
+ .idea /misc.xml
85
+ * .ipr
86
+
87
+ # Sonarlint plugin
88
+ .idea /sonarlint
89
+
90
+ # ## Java ###
91
+ # Compiled class file
92
+ * .class
93
+
94
+ # Log file
95
+ * .log
96
+
97
+ # BlueJ files
98
+ * .ctxt
99
+
100
+ # Mobile Tools for Java (J2ME)
101
+ .mtj.tmp /
102
+
103
+ # Package Files #
104
+ * .jar
105
+ * .war
106
+ * .nar
107
+ * .ear
108
+ * .zip
109
+ * .tar.gz
110
+ * .rar
111
+
112
+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
113
+ hs_err_pid *
114
+
115
+ # ## macOS ###
116
+ # General
117
+ .DS_Store
118
+ .AppleDouble
119
+ .LSOverride
120
+
121
+ # Icon must end with two \r
122
+ Icon
123
+
124
+ # Thumbnails
125
+ ._ *
126
+
127
+ # Files that might appear in the root of a volume
128
+ .DocumentRevisions-V100
129
+ .fseventsd
130
+ .Spotlight-V100
131
+ .TemporaryItems
132
+ .Trashes
133
+ .VolumeIcon.icns
134
+ .com.apple.timemachine.donotpresent
135
+
136
+ # Directories potentially created on remote AFP share
137
+ .AppleDB
138
+ .AppleDesktop
139
+ Network Trash Folder
140
+ Temporary Items
141
+ .apdisk
142
+
143
+ # ## Gradle ###
144
+ .gradle
145
+ build /
146
+
147
+ # Ignore Gradle GUI config
148
+ gradle-app.setting
149
+
150
+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
151
+ ! gradle-wrapper.jar
152
+
153
+ # Cache of project
154
+ .gradletasknamecache
155
+
156
+ # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
157
+ # gradle/wrapper/gradle-wrapper.properties
158
+
159
+ # ## Gradle Patch ###
160
+ ** /build /
161
+
162
+ # End of https://www.gitignore.io/api/java,macos,gradle,intellij+all
0 commit comments