1- * .class
1+
2+ # Created by https://www.gitignore.io/api/java,maven,windows,intellij
3+
4+ # ## Intellij ###
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 /dictionaries
12+
13+ # Sensitive or high-churn files:
14+ .idea /** /dataSources /
15+ .idea /** /dataSources.ids
16+ .idea /** /dataSources.xml
17+ .idea /** /dataSources.local.xml
18+ .idea /** /sqlDataSources.xml
19+ .idea /** /dynamic.xml
20+ .idea /** /uiDesigner.xml
21+
22+ # Gradle:
23+ .idea /** /gradle.xml
24+ .idea /** /libraries
25+
26+ # CMake
27+ cmake-build-debug /
28+
29+ # Mongo Explorer plugin:
30+ .idea /** /mongoSettings.xml
31+
32+ # # File-based project format:
33+ * .iws
34+
35+ # # Plugin-specific files:
36+
37+ # IntelliJ
38+ /out /
39+
40+ # mpeltonen/sbt-idea plugin
41+ .idea_modules /
42+
43+ # JIRA plugin
44+ atlassian-ide-plugin.xml
45+
46+ # Cursive Clojure plugin
47+ .idea /replstate.xml
48+
49+ # Ruby plugin and RubyMine
50+ /.rakeTasks
51+
52+ # Crashlytics plugin (for Android Studio and IntelliJ)
53+ com_crashlytics_export_strings.xml
54+ crashlytics.properties
55+ crashlytics-build.properties
56+ fabric.properties
57+
58+ # ## Intellij Patch ###
59+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
60+
61+ * .iml
62+ # modules.xml
63+ # .idea/misc.xml
64+ # *.ipr
65+
66+ # IntelliJIdea + ALL
67+ .idea /
68+
69+ # Sonarlint plugin
70+ .idea /sonarlint
71+
72+ # ## Java ###
73+ # Compiled class file
74+ * .class
75+
76+ # Log file
77+ * .log
78+
79+ # BlueJ files
80+ * .ctxt
81+
82+ # Mobile Tools for Java (J2ME)
83+ .mtj.tmp /
84+
85+ # Package Files #
86+ * .jar
87+ * .war
88+ * .ear
89+ * .zip
90+ * .tar.gz
91+ * .rar
92+
93+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
94+ hs_err_pid *
95+
96+ # ## Maven ###
97+ target /
98+ pom.xml.tag
99+ pom.xml.releaseBackup
100+ pom.xml.versionsBackup
101+ pom.xml.next
102+ release.properties
103+ dependency-reduced-pom.xml
104+ buildNumber.properties
105+ .mvn /timing.properties
106+
107+ # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
108+ ! /.mvn /wrapper /maven-wrapper.jar
109+
110+ # ## Windows ###
111+ # Windows thumbnail cache files
112+ Thumbs.db
113+ ehthumbs.db
114+ ehthumbs_vista.db
115+
116+ # Folder config file
117+ Desktop.ini
118+
119+ # Recycle Bin used on file shares
120+ $RECYCLE.BIN /
121+
122+ # Windows Installer files
123+ * .cab
124+ * .msi
125+ * .msm
126+ * .msp
127+
128+ # Windows shortcuts
129+ * .lnk
130+
131+ # End of https://www.gitignore.io/api/java,maven,windows,intellij
0 commit comments