1
+ # Created by https://www.toptal.com/developers/gitignore/api/intellij,gradle,groovy
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=intellij,gradle,groovy
3
+
4
+ # ## Groovy ###
5
+ # .gitignore created from Groovy contributors in https://github.com/apache/groovy/blob/master/.gitignore
6
+
7
+ user.gradle
8
+ .gradle /
9
+ target /
10
+ build /
11
+ out /
12
+
13
+ * .DS_Store
14
+ * .class
15
+ * .swp
16
+ * ~
17
+
18
+ .idea
19
+ * .iml
20
+ * .ipr
21
+ * .iws
22
+ .shelf
23
+
24
+ .settings /
25
+ .classpath
26
+ .project
27
+ bin /
28
+
29
+
30
+ # ## Intellij ###
31
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
32
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
33
+
34
+ # User-specific stuff
35
+ .idea /** /workspace.xml
36
+ .idea /** /tasks.xml
37
+ .idea /** /usage.statistics.xml
38
+ .idea /** /dictionaries
39
+ .idea /** /shelf
40
+
41
+ # AWS User-specific
42
+ .idea /** /aws.xml
43
+
44
+ # Generated files
45
+ .idea /** /contentModel.xml
46
+
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
+
56
+ # Gradle
57
+ .idea /** /gradle.xml
58
+ .idea /** /libraries
59
+
60
+ # Gradle and Maven with auto-import
61
+ # When using Gradle or Maven with auto-import, you should exclude module files,
62
+ # since they will be recreated, and may cause churn. Uncomment if using
63
+ # auto-import.
64
+ # .idea/artifacts
65
+ # .idea/compiler.xml
66
+ # .idea/jarRepositories.xml
67
+ # .idea/modules.xml
68
+ # .idea/*.iml
69
+ # .idea/modules
70
+ # *.iml
71
+ # *.ipr
72
+
73
+ # CMake
74
+ cmake-build- * /
75
+
76
+ # Mongo Explorer plugin
77
+ .idea /** /mongoSettings.xml
78
+
79
+ # File-based project format
80
+
81
+ # IntelliJ
82
+
83
+ # mpeltonen/sbt-idea plugin
84
+ .idea_modules /
85
+
86
+ # JIRA plugin
87
+ atlassian-ide-plugin.xml
88
+
89
+ # Cursive Clojure plugin
90
+ .idea /replstate.xml
91
+
92
+ # SonarLint plugin
93
+ .idea /sonarlint /
94
+
95
+ # Crashlytics plugin (for Android Studio and IntelliJ)
96
+ com_crashlytics_export_strings.xml
97
+ crashlytics.properties
98
+ crashlytics-build.properties
99
+ fabric.properties
100
+
101
+ # Editor-based Rest Client
102
+ .idea /httpRequests
103
+
104
+ # Android studio 3.1+ serialized cache file
105
+ .idea /caches /build_file_checksums.ser
106
+
107
+ # ## Intellij Patch ###
108
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
109
+
110
+ # *.iml
111
+ # modules.xml
112
+ # .idea/misc.xml
113
+ # *.ipr
114
+
115
+ # Sonarlint plugin
116
+ # https://plugins.jetbrains.com/plugin/7973-sonarlint
117
+ .idea /** /sonarlint /
118
+
119
+ # SonarQube Plugin
120
+ # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
121
+ .idea /** /sonarIssues.xml
122
+
123
+ # Markdown Navigator plugin
124
+ # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
125
+ .idea /** /markdown-navigator.xml
126
+ .idea /** /markdown-navigator-enh.xml
127
+ .idea /** /markdown-navigator /
128
+
129
+ # Cache file creation bug
130
+ # See https://youtrack.jetbrains.com/issue/JBR-2257
131
+ .idea /$CACHE_FILE$
132
+
133
+ # CodeStream plugin
134
+ # https://plugins.jetbrains.com/plugin/12206-codestream
135
+ .idea /codestream.xml
136
+
137
+ # Azure Toolkit for IntelliJ plugin
138
+ # https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
139
+ .idea /** /azureSettings.xml
140
+
141
+ # ## Gradle ###
142
+ .gradle
143
+ ** /build /
144
+ ! src /** /build /
145
+
146
+ # Ignore Gradle GUI config
147
+ gradle-app.setting
148
+
149
+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
150
+ ! gradle-wrapper.jar
151
+
152
+ # Avoid ignore Gradle wrappper properties
153
+ ! gradle-wrapper.properties
154
+
155
+ # Cache of project
156
+ .gradletasknamecache
157
+
158
+ # Eclipse Gradle plugin generated files
159
+ # Eclipse Core
160
+ # JDT-specific (Eclipse Java Development Tools)
161
+
162
+ # ## Gradle Patch ###
163
+ # Java heap dump
164
+ * .hprof
165
+
166
+ # End of https://www.toptal.com/developers/gitignore/api/intellij,gradle,groovy
0 commit comments