Skip to content

Commit e19592a

Browse files
committed
Update .gitignore file
1 parent 413bfaf commit e19592a

1 file changed

Lines changed: 76 additions & 4 deletions

File tree

.gitignore

Lines changed: 76 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
######################
2+
# Java
3+
######################
14
# Compiled class file
25
*.class
36

@@ -7,16 +10,85 @@
710
# BlueJ files
811
*.ctxt
912

10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
12-
13-
# Package Files #
13+
######################
14+
# Package Files
15+
######################
1416
*.jar
1517
*.war
1618
*.ear
19+
*.db
1720
*.zip
1821
*.tar.gz
1922
*.rar
2023

2124
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2225
hs_err_pid*
26+
27+
######################
28+
# Eclipse
29+
######################
30+
*.pydevproject
31+
.project
32+
.metadata
33+
/bin/**
34+
/tmp/**
35+
/tmp/**/*
36+
*.tmp
37+
*.bak
38+
*.swp
39+
*~.nib
40+
local.properties
41+
.classpath
42+
.settings/**
43+
.loadpath
44+
/src/main/resources/rebel.xml
45+
46+
# External tool builders
47+
.externalToolBuilders/**
48+
49+
# Locally stored "Eclipse launch configurations"
50+
*.launch
51+
52+
# CDT-specific
53+
.cproject
54+
55+
# PDT-specific
56+
.buildpath
57+
58+
######################
59+
# Intellij
60+
######################
61+
.idea
62+
*.iml
63+
*.iws
64+
*.ipr
65+
*.ids
66+
*.orig
67+
68+
######################
69+
# Maven
70+
######################
71+
/log/**
72+
/target/**
73+
74+
######################
75+
# Gradle
76+
######################
77+
.gradle/**
78+
79+
######################
80+
# Windows
81+
######################
82+
# Windows image file caches
83+
Thumbs.db
84+
85+
# Folder config file
86+
Desktop.ini
87+
88+
######################
89+
# Mac OSX
90+
######################
91+
.DS_Store
92+
.svn
93+
94+

0 commit comments

Comments
 (0)