forked from cloudfoundry/uaa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
16 lines (15 loc) · 1012 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
rootProject.name = 'cloudfoundry-identity-parent'
include ':cloudfoundry-identity-model'
include ':cloudfoundry-identity-client-lib'
include ':cloudfoundry-identity-server'
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-model').projectDir = "$rootDir/model" as File
project(':cloudfoundry-identity-client-lib').projectDir = "$rootDir/client-lib" as File
project(':cloudfoundry-identity-server').projectDir = "$rootDir/server" as File
project(':cloudfoundry-identity-uaa').projectDir = "$rootDir/uaa" 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