forked from d2iq-archive/dcos-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
34 lines (23 loc) · 894 Bytes
/
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
rootProject.name = 'dcos-commons'
include 'sdk/common'
project(":sdk/common").name = "common"
include 'sdk/scheduler'
project(":sdk/scheduler").name = "scheduler"
include 'sdk/executor'
project(":sdk/executor").name = "executor"
include 'sdk/testing'
project(":sdk/testing").name = "testing"
include 'frameworks/helloworld'
project(":frameworks/helloworld").name = "helloworld"
include 'frameworks/elastic'
project(':frameworks/elastic').name = 'elastic'
include 'frameworks/kafka'
project(":frameworks/kafka").name = "kafka"
include 'frameworks/hdfs'
project(":frameworks/hdfs").name = "hdfs"
include 'frameworks/template'
project(":frameworks/template").name = "template"
include 'frameworks/cassandra'
project(":frameworks/cassandra").name = "cassandra"
include 'frameworks/helloworld/tests/tls/keystore'
project(":frameworks/helloworld/tests/tls/keystore").name = 'keystore-app'