forked from h2oai/h2o-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
37 lines (33 loc) · 1.07 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
rootProject.name = 'h2o-3'
include 'h2o-core'
include 'h2o-algos'
include 'h2o-web'
include 'h2o-app'
include 'h2o-scala'
include 'h2o-r'
include 'h2o-py'
include 'h2o-assembly'
include 'h2o-persist-hdfs'
include 'h2o-docs'
include 'h2o-hadoop:h2o-mapreduce-generic'
include 'h2o-hadoop:h2o-yarn-generic'
include 'h2o-genmodel'
include 'h2o-java-rest-bindings'
if (System.getProperty("user.name").equals("jenkins") || System.getenv("BUILD_HADOOP") != null) {
include 'h2o-hadoop:h2o-cdh5.2'
include 'h2o-hadoop:h2o-cdh5.2-assembly'
include 'h2o-hadoop:h2o-cdh5.3'
include 'h2o-hadoop:h2o-cdh5.3-assembly'
include 'h2o-hadoop:h2o-cdh5.4.2'
include 'h2o-hadoop:h2o-cdh5.4.2-assembly'
include 'h2o-hadoop:h2o-hdp2.1'
include 'h2o-hadoop:h2o-hdp2.1-assembly'
include 'h2o-hadoop:h2o-hdp2.2'
include 'h2o-hadoop:h2o-hdp2.2-assembly'
include 'h2o-hadoop:h2o-mapr3.1.1'
include 'h2o-hadoop:h2o-mapr3.1.1-assembly'
include 'h2o-hadoop:h2o-mapr4.0.1'
include 'h2o-hadoop:h2o-mapr4.0.1-assembly'
}
include 'h2o-test-integ'
include 'h2o-testng'