forked from elastic/elasticsearch-hadoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
36 lines (27 loc) · 858 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
35
36
pluginManagement {
plugins {
id 'com.github.johnrengelman.shadow' version "8.1.1"
}
}
rootProject.name = "elasticsearch-hadoop"
include 'thirdparty'
include 'mr'
project(":mr").name = "elasticsearch-hadoop-mr"
include 'hive'
project(":hive").name = "elasticsearch-hadoop-hive"
include 'spark-core'
project(":spark-core").projectDir = new File(settingsDir, "spark/core")
project(":spark-core").name = "elasticsearch-spark"
include 'sql-20'
project(":sql-20").projectDir = new File(settingsDir, "spark/sql-20")
project(":sql-20").name = "elasticsearch-spark-20"
include 'sql-30'
project(":sql-30").projectDir = new File(settingsDir, "spark/sql-30")
project(":sql-30").name = "elasticsearch-spark-30"
include 'dist'
include 'test'
include 'test:shared'
include 'test:fixtures'
include 'test:fixtures:minikdc'
include 'qa'
include 'qa:kerberos'