forked from cloudfoundry/uaa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
20 lines (19 loc) · 1.25 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
rootProject.name = "cloudfoundry-identity-parent"
include(":cloudfoundry-identity-metrics-data")
include(":cloudfoundry-identity-model")
include(":cloudfoundry-identity-server")
include(":cloudfoundry-identity-statsd")
include(":cloudfoundry-identity-statsd-lib")
include(":cloudfoundry-identity-uaa")
include(":cloudfoundry-identity-samples:cloudfoundry-identity-api")
include(":cloudfoundry-identity-samples:cloudfoundry-identity-app")
include(":cloudfoundry-identity-samples")
project(":cloudfoundry-identity-metrics-data").projectDir = "$rootDir/metrics-data" as File
project(":cloudfoundry-identity-model").projectDir = "$rootDir/model" as File
project(":cloudfoundry-identity-server").projectDir = "$rootDir/server" as File
project(":cloudfoundry-identity-uaa").projectDir = "$rootDir/uaa" as File
project(":cloudfoundry-identity-statsd").projectDir = "$rootDir/statsd" as File
project(":cloudfoundry-identity-statsd-lib").projectDir = "$rootDir/statsd-lib" as File
project(":cloudfoundry-identity-samples:cloudfoundry-identity-api").projectDir = "$rootDir/samples/api" as File
project(":cloudfoundry-identity-samples:cloudfoundry-identity-app").projectDir = "$rootDir/samples/app" as File
project(":cloudfoundry-identity-samples").projectDir = "$rootDir/samples" as File