blob: ca8db20e2dbd9c1ff06439cebeec3537dbe3ff9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# ignore all bin directories
# matches "bin" in any subfolder
bin/
# ignore all target directories
target/
# ignore logs that might be laying around
logs/
# ignore laptop eclipse settings
.settings/
localEclipse/
# ignore local targets
dmaapbc.jar
repository/
misc/dmaapbc_init.dat
# ignore package tmp dirs
stage/
tmp/
# ignore blackduck files
*.jsonld
|