This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroot.conf
80 lines (79 loc) · 1.64 KB
/
root.conf
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Configuration cannot be overriden unless the configuration is reloaded
gem-config {
# The resources directory points to where gem will store repositories, workspaces, etc.
resourcesdirectory: "/GEM/resources",
defaultfeaturebranchprovider: "",
repositories: [
{
id: "gem",
url: "[email protected]:aposin/gem.git",
server: "https://github.com/aposin/gem"
},
{
id: "gem-config",
url: "[email protected]:aposin/gem-config.git",
server: "https://github.com/aposin/gem-config"
},
{
id: "licensescout",
url: "[email protected]:aposin/LicenseScout.git",
server: "https://github.com/aposin/LicenseScout"
},
{
id: "mergeprocessor",
url: "[email protected]:aposin/MergeProcessor.git",
server: "https://github.com/aposin/MergeProcessor"
}
],
projects: [
{
# TODO: change branches to "main"
name: "gem",
displayname: "GEM",
environments: [
{
name: "main",
displayname: "main",
branches: {
gem: "main"
}
},
{
name: "config",
displayname: "main + config",
branches: {
gem: "main",
gem-config: "main"
}
}
]
},
{
name: "licensescout",
displayname: "LicenseScout",
environments: [
{
name: "master",
displayname: "master",
branches: {
licensescout: "master"
}
}
]
},
{
name: "mergeprocessor",
displayname: "MergeProcessor",
environments: [
{
name: "master",
displayname: "master",
branches: {
mergeprocessor: "master"
}
}
]
},
]
}
include required(file("ext/eclipse.conf"))