1+ # Created by https://www.gitignore.io/api/java,maven,intellij
2+
3+ # ## Intellij ###
4+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
5+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
6+
7+ # User-specific stuff:
8+ .idea /** /workspace.xml
9+ .idea /** /tasks.xml
10+ .idea /dictionaries
11+
12+ # Sensitive or high-churn files:
13+ .idea /** /dataSources /
14+ .idea /** /dataSources.ids
15+ .idea /** /dataSources.xml
16+ .idea /** /dataSources.local.xml
17+ .idea /** /sqlDataSources.xml
18+ .idea /** /dynamic.xml
19+ .idea /** /uiDesigner.xml
20+
21+ # Gradle:
22+ .idea /** /gradle.xml
23+ .idea /** /libraries
24+
25+ # CMake
26+ cmake-build-debug /
27+
28+ # Mongo Explorer plugin:
29+ .idea /** /mongoSettings.xml
30+
31+ # # File-based project format:
32+ * .iws
33+
34+ # # Plugin-specific files:
35+
36+ # IntelliJ
37+ /out /
38+ /.idea /
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+ # Sonarlint plugin
67+ .idea /sonarlint
68+
69+ # ## Java ###
70+ # Compiled class file
71+ * .class
72+
73+ # Log file
74+ * .log
75+
76+ # BlueJ files
77+ * .ctxt
78+
79+ # Mobile Tools for Java (J2ME)
80+ .mtj.tmp /
81+
82+ # Package Files #
83+ * .war
84+ * .ear
85+ * .zip
86+ * .tar.gz
87+ * .rar
88+
89+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
90+ hs_err_pid *
91+
92+ # ## Maven ###
93+ target /
94+ pom.xml.tag
95+ pom.xml.releaseBackup
96+ pom.xml.versionsBackup
97+ pom.xml.next
98+ release.properties
99+ dependency-reduced-pom.xml
100+ buildNumber.properties
101+ .mvn /timing.properties
102+
103+ # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
104+ ! /.mvn /wrapper /maven-wrapper.jar
105+
106+ # ## Eclipse ###
107+
108+ .metadata
109+ bin /
110+ tmp /
111+ * .tmp
112+ * .bak
113+ * .swp
114+ * ~.nib
115+ local.properties
116+ .settings /
117+ .loadpath
118+ .recommenders
119+
120+ # ## Eclipse Patch ###
121+ # Eclipse Core
122+ .project
123+
124+ # JDT-specific (Eclipse Java Development Tools)
125+ .classpath
126+ # End of https://www.gitignore.io/api/java,maven,intellij
0 commit comments