diff options
-rw-r--r-- | .gitignore | 78 |
1 files changed, 69 insertions, 9 deletions
@@ -1,19 +1,79 @@ | |||
1 | # Directories # | ||
2 | /build/ | ||
3 | /bin/ | ||
4 | target/ | ||
5 | |||
6 | # OS Files # | ||
7 | .DS_Store | ||
8 | |||
1 | *.class | 9 | *.class |
2 | 10 | ||
3 | # Mobile Tools for Java (J2ME) | ||
4 | .mtj.tmp/ | ||
5 | |||
6 | # Package Files # | 11 | # Package Files # |
7 | *.jar | 12 | *.jar |
8 | *.war | 13 | *.war |
9 | *.ear | 14 | *.ear |
15 | *.db | ||
16 | |||
17 | ###################### | ||
18 | # Windows | ||
19 | ###################### | ||
20 | |||
21 | # Windows image file caches | ||
22 | Thumbs.db | ||
23 | |||
24 | # Folder config file | ||
25 | Desktop.ini | ||
26 | |||
27 | ###################### | ||
28 | # OSX | ||
29 | ###################### | ||
30 | |||
31 | .DS_Store | ||
32 | .svn | ||
33 | |||
34 | # Thumbnails | ||
35 | ._* | ||
36 | |||
37 | # Files that might appear on external disk | ||
38 | .Spotlight-V100 | ||
39 | .Trashes | ||
40 | |||
41 | |||
42 | ###################### | ||
43 | # Eclipse | ||
44 | ###################### | ||
45 | |||
46 | *.pydevproject | ||
47 | .project | ||
48 | .metadata | ||
49 | bin/** | ||
50 | tmp/** | ||
51 | tmp/**/* | ||
52 | *.tmp | ||
53 | *.bak | ||
54 | *.swp | ||
55 | *~.nib | ||
56 | local.properties | ||
57 | .classpath | ||
58 | .settings/ | ||
59 | .loadpath | ||
60 | /src/main/resources/rebel.xml | ||
61 | # External tool builders | ||
62 | .externalToolBuilders/ | ||
63 | |||
64 | # Locally stored "Eclipse launch configurations" | ||
65 | *.launch | ||
66 | |||
67 | # CDT-specific | ||
68 | .cproject | ||
69 | |||
70 | # PDT-specific | ||
71 | .buildpath | ||
10 | 72 | ||
11 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
12 | hs_err_pid* | ||
13 | 73 | ||
74 | ###################### | ||
14 | # BlueJ | 75 | # BlueJ |
76 | ###################### | ||
77 | |||
15 | *.bluej | 78 | *.bluej |
16 | *.ctxt | 79 | *.ctxt |
17 | |||
18 | # Eclipse | ||
19 | .project \ No newline at end of file | ||