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