Commit e9fae278b543e227028755bb5e7676adf2f86c2e
1 parent
3fa37726
Switch to git from subversion
Showing
1 changed file
with
79 additions
and
0 deletions
.gitignore
0 → 100644
1 | +# Build # | |
2 | +######### | |
3 | +MANIFEST.MF | |
4 | +dependency-reduced-pom.xml | |
5 | + | |
6 | +# Compiled # | |
7 | +############ | |
8 | +bin | |
9 | +build | |
10 | +dist | |
11 | +lib | |
12 | +out | |
13 | +run | |
14 | +target | |
15 | +*.com | |
16 | +*.class | |
17 | +*.dll | |
18 | +*.exe | |
19 | +*.o | |
20 | +*.so | |
21 | + | |
22 | +# Databases # | |
23 | +############# | |
24 | +*.db | |
25 | +*.sql | |
26 | +*.sqlite | |
27 | + | |
28 | +# Packages # | |
29 | +############ | |
30 | +*.7z | |
31 | +*.dmg | |
32 | +*.gz | |
33 | +*.iso | |
34 | +*.rar | |
35 | +*.tar | |
36 | +*.zip | |
37 | + | |
38 | +# Repository # | |
39 | +############## | |
40 | +.git | |
41 | + | |
42 | +# Logging # | |
43 | +########### | |
44 | +/logs | |
45 | +*.log | |
46 | + | |
47 | +# Misc # | |
48 | +######## | |
49 | +*.bak | |
50 | + | |
51 | +# System # | |
52 | +########## | |
53 | +.DS_Store | |
54 | +ehthumbs.db | |
55 | +Thumbs.db | |
56 | +*.bat | |
57 | +*.sh | |
58 | + | |
59 | +# Project # | |
60 | +########### | |
61 | +.checkstyle | |
62 | +.classpath | |
63 | +.externalToolBuilders | |
64 | +.gradle | |
65 | +.nb-gradle | |
66 | +.idea | |
67 | +.project | |
68 | +.settings | |
69 | +eclipse | |
70 | +nbproject | |
71 | +atlassian-ide-plugin.xml | |
72 | +build.xml | |
73 | +nb-configuration.xml | |
74 | +*.iml | |
75 | +*.ipr | |
76 | +*.iws | |
77 | +*.launch | |
78 | +/externals | |
79 | +/resources/update | ... | ... |