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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
subcomponents {
A {
name: "A";
path: "a";
depends: B;
fetch {
git {
url: "http://example.com/repo.git";
branch: "master";
}
}
}
B {
name: "B";
path: "b";
depends: C;
fetch {
git {
url: "http://example.com/repo.git";
branch: "master";
}
}
}
C {
name: "C";
path: "c";
fetch {
git {
url: "http://example.com/repo.git";
branch: "master";
}
}
}
}