forked from linkedin/openhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
61 lines (51 loc) · 1.42 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
pluginManagement {
plugins {
}
resolutionStrategy {
}
repositories {
maven {
url "https://repo.maven.apache.org/maven2/"
metadataSources {
gradleMetadata()
mavenPom()
artifact()
}
}
maven {
url "https://plugins.gradle.org/m2/"
metadataSources {
mavenPom()
artifact()
}
}
}
}
rootProject.name = 'openhouse'
include ':apps:spark'
include ':client:common'
include ':client:hts'
include ':client:jobsclient'
include ':client:tableclient'
include ':client:secureclient'
include ':integrations:spark:openhouse-spark-runtime'
include ':integrations:spark:openhouse-spark-itest'
include ':integrations:spark-extensions'
include ':integrations:java:openhouse-java-runtime'
include ':integrations:java:openhouse-java-itest'
include ':iceberg:openhouse:htscatalog'
include ':iceberg:openhouse:internalcatalog'
include ':iceberg:azure'
include ':libs:datalayout'
include ':services:common'
include ':services:housetables'
include ':services:jobs'
include ':services:tables'
include ':tables-test-fixtures'
include ':cluster:configs'
include ':cluster:storage'
include ':cluster:metrics'
include ':scripts:java:tools:dummytokens'
project(':integrations:spark:openhouse-spark-runtime').name = 'openhouse-spark-runtime_2.12'
project(':apps:spark').name = 'openhouse-spark-apps_2.12'
project(':tables-test-fixtures').name = 'tables-test-fixtures_2.12'