-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
90 lines (87 loc) · 3.86 KB
/
settings.gradle
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
81
82
83
84
85
86
87
88
89
/*
* Copyright 2016 ThoughtWorks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
rootProject.name = 'gocd'
include ':base'
include ':util'
include ':test-utils'
include 'domain'
include 'commandline'
include ':db'
include ':database'
include ':go-plugin-api-internal'
include ':go-plugin-api'
include ':go-plugin-activator'
include ':go-plugin-infra'
include ':go-plugin-access'
include ':plugin-metadata-store'
include ':config-api'
include ':config-server'
include ':common'
include ':agent-common'
include ':test-agent'
include ':tfs-impl-10'
include ':tfs-impl-14'
include ':agent'
include ':agent-process-launcher'
include ':agent-launcher'
include ':agent-bootstrapper'
include ':rack_hack'
include ':server'
include ':test-addon'
include ':server-launcher'
include ':app-server'
include ':jetty9'
include ':development-agent'
include ':development-server'
include ':installers'
include ':release'
include ':tools'
project(':base').projectDir = "$rootDir/base" as File
project(':util').projectDir = "$rootDir/util" as File
project(':test-utils').projectDir = "$rootDir/test-utils" as File
project(':db').projectDir = "$rootDir/db" as File
project(':database').projectDir = "$rootDir/addon-api/database" as File
project(':commandline').projectDir = "$rootDir/commandline" as File
project(':domain').projectDir = "$rootDir/domain" as File
project(':go-plugin-api-internal').projectDir = "$rootDir/plugin-infra/go-plugin-api-internal" as File
project(':go-plugin-api').projectDir = "$rootDir/plugin-infra/go-plugin-api" as File
project(':go-plugin-activator').projectDir = "$rootDir/plugin-infra/go-plugin-activator" as File
project(':go-plugin-infra').projectDir = "$rootDir/plugin-infra/go-plugin-infra" as File
project(':go-plugin-access').projectDir = "$rootDir/plugin-infra/go-plugin-access" as File
project(':plugin-metadata-store').projectDir = "$rootDir/plugin-infra/plugin-metadata-store" as File
project(':config-api').projectDir = "$rootDir/config/config-api" as File
project(':config-server').projectDir = "$rootDir/config/config-server" as File
project(':common').projectDir = "$rootDir/common" as File
project(':agent-common').projectDir = "$rootDir/agent-common" as File
project(':test-agent').projectDir = "$rootDir/test-agent" as File
project(':tfs-impl-10').projectDir = "$rootDir/tfs-impl/tfs-impl-10" as File
project(':tfs-impl-14').projectDir = "$rootDir/tfs-impl/tfs-impl-14" as File
project(':agent').projectDir = "$rootDir/agent" as File
project(':agent-launcher').projectDir = "$rootDir/agent-launcher" as File
project(':agent-bootstrapper').projectDir = "$rootDir/agent-bootstrapper" as File
project(':rack_hack').projectDir = "$rootDir/rack_hack" as File
project(':server').projectDir = "$rootDir/server" as File
project(':test-addon').projectDir = "$rootDir/test-addon" as File
project(':server-launcher').projectDir = "$rootDir/server-launcher" as File
project(':app-server').projectDir = "$rootDir/app-server" as File
project(':jetty9').projectDir = "$rootDir/jetty9" as File
project(':development-agent').projectDir = "$rootDir/development-utility/development-agent" as File
project(':development-server').projectDir = "$rootDir/development-utility/development-server" as File
project(':installers').projectDir = "$rootDir/installers" as File
project(':release').projectDir = "$rootDir/release" as File
project(':tools').projectDir = "$rootDir/tools" as File
include 'domain'
include 'commandline'