File tree Expand file tree Collapse file tree 1 file changed +81
-0
lines changed
Expand file tree Collapse file tree 1 file changed +81
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ # Created by https://www.gitignore.io/api/java,gradle,eclipse
3+
4+ # ## Eclipse ###
5+
6+ .metadata
7+ bin /
8+ tmp /
9+ * .tmp
10+ * .bak
11+ * .swp
12+ * ~.nib
13+ local.properties
14+ .settings /
15+ .loadpath
16+ .recommenders
17+
18+ # External tool builders
19+ .externalToolBuilders /
20+
21+ # Locally stored "Eclipse launch configurations"
22+ * .launch
23+
24+ # PyDev specific (Python IDE for Eclipse)
25+ * .pydevproject
26+
27+ # CDT-specific (C/C++ Development Tooling)
28+ .cproject
29+
30+ # Java annotation processor (APT)
31+ .factorypath
32+
33+ # PDT-specific (PHP Development Tools)
34+ .buildpath
35+
36+ # sbteclipse plugin
37+ .target
38+
39+ # Tern plugin
40+ .tern-project
41+
42+ # TeXlipse plugin
43+ .texlipse
44+
45+ # STS (Spring Tool Suite)
46+ .springBeans
47+
48+ # Code Recommenders
49+ .recommenders /
50+
51+ # Scala IDE specific (Scala & Java development for Eclipse)
52+ .cache-main
53+ .scala_dependencies
54+ .worksheet
55+
56+ # ## Eclipse Patch ###
57+ # Eclipse Core
58+ .project
59+
60+ # JDT-specific (Eclipse Java Development Tools)
61+ .classpath
62+
63+ # ## Java ###
164# Compiled class file
265* .class
366
2083
2184# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2285hs_err_pid *
86+
87+ # ## Gradle ###
88+ .gradle
89+ /build /
90+
91+ # Ignore Gradle GUI config
92+ gradle-app.setting
93+
94+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
95+ ! gradle-wrapper.jar
96+
97+ # Cache of project
98+ .gradletasknamecache
99+
100+ # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
101+ # gradle/wrapper/gradle-wrapper.properties
102+
103+ # End of https://www.gitignore.io/api/java,gradle,eclipse
You can’t perform that action at this time.
0 commit comments