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