File tree 1 file changed +103
-0
lines changed
1 file changed +103
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ # Created by https://www.gitignore.io/api/java,macos,gradle,windows
3
+ # Edit at https://www.gitignore.io/?templates=java,macos,gradle,windows
4
+
5
+ # ## Java ###
6
+ # Compiled class file
7
+ * .class
8
+
9
+ # Log file
10
+ * .log
11
+
12
+ # BlueJ files
13
+ * .ctxt
14
+
15
+ # Mobile Tools for Java (J2ME)
16
+ .mtj.tmp /
17
+
18
+ # Package Files #
19
+ * .jar
20
+ * .war
21
+ * .nar
22
+ * .ear
23
+ * .zip
24
+ * .tar.gz
25
+ * .rar
26
+
27
+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
28
+ hs_err_pid *
29
+
30
+ # ## macOS ###
31
+ # General
32
+ .DS_Store
33
+ .AppleDouble
34
+ .LSOverride
35
+
36
+ # Icon must end with two \r
37
+ Icon
38
+
39
+ # Thumbnails
40
+ ._ *
41
+
42
+ # Files that might appear in the root of a volume
43
+ .DocumentRevisions-V100
44
+ .fseventsd
45
+ .Spotlight-V100
46
+ .TemporaryItems
47
+ .Trashes
48
+ .VolumeIcon.icns
49
+ .com.apple.timemachine.donotpresent
50
+
51
+ # Directories potentially created on remote AFP share
52
+ .AppleDB
53
+ .AppleDesktop
54
+ Network Trash Folder
55
+ Temporary Items
56
+ .apdisk
57
+
58
+ # ## Windows ###
59
+ # Windows thumbnail cache files
60
+ Thumbs.db
61
+ Thumbs.db:encryptable
62
+ ehthumbs.db
63
+ ehthumbs_vista.db
64
+
65
+ # Dump file
66
+ * .stackdump
67
+
68
+ # Folder config file
69
+ [Dd ]esktop.ini
70
+
71
+ # Recycle Bin used on file shares
72
+ $RECYCLE.BIN /
73
+
74
+ # Windows Installer files
75
+ * .cab
76
+ * .msi
77
+ * .msix
78
+ * .msm
79
+ * .msp
80
+
81
+ # Windows shortcuts
82
+ * .lnk
83
+
84
+ # ## Gradle ###
85
+ .gradle
86
+ build /
87
+
88
+ # Ignore Gradle GUI config
89
+ gradle-app.setting
90
+
91
+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
92
+ ! gradle-wrapper.jar
93
+
94
+ # Cache of project
95
+ .gradletasknamecache
96
+
97
+ # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
98
+ # gradle/wrapper/gradle-wrapper.properties
99
+
100
+ # ## Gradle Patch ###
101
+ ** /build /
102
+
103
+ # End of https://www.gitignore.io/api/java,macos,gradle,windows
You can’t perform that action at this time.
0 commit comments