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
41
subcomponents {
A {
name: "A ramdom component name";
path: "a";
fetch {
git {
url: "https://github.com/subcomponent/test-git-simple.git";
branch: "master";
}
}
common {
exec: "touch";
args: "common-from-A";
}
}
B {
name: "Another ramdom component name";
path: "b";
fetch {
git {
url: "https://github.com/subcomponent/test-git-simple.git";
branch: "master";
}
}
common {
exec: "touch";
args: "common-from-B";
}
b-only {
exec: "touch";
args: "b-only";
}
}
}