forked from linkedin/transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
29 lines (26 loc) · 1019 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
// Copyright 2018 LinkedIn Corporation. All rights reserved.
// Licensed under the BSD-2 Clause license.
// See LICENSE in the project root for license information.
rootProject.name = 'transportable-udfs'
def modules = [
'transportable-udfs-api',
'transportable-udfs-annotation-processor',
'transportable-udfs-avro',
'transportable-udfs-codegen',
'transportable-udfs-compile-utils',
'transportable-udfs-hive',
'transportable-udfs-plugin',
'transportable-udfs-presto',
'transportable-udfs-spark',
'transportable-udfs-test:transportable-udfs-test-api',
'transportable-udfs-test:transportable-udfs-test-generic',
'transportable-udfs-test:transportable-udfs-test-hive',
'transportable-udfs-test:transportable-udfs-test-presto',
'transportable-udfs-test:transportable-udfs-test-spark',
'transportable-udfs-test:transportable-udfs-test-spi',
'transportable-udfs-type-system',
'transportable-udfs-utils'
]
modules.each { module ->
include "${module}"
}