-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (21 loc) · 879 Bytes
/
build.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
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://repository.cloudera.com/artifactory/cloudera-repos/"
}
}
// define all global libraries here (maybe it is good practice to define ALL libraries here - for duplicate exclusion)
ext.hadoopCDHVersion = "2.6.0-cdh5.7.1"
ext.hbaseCDHVersion = "1.2.0-cdh5.7.1"
ext.corefanVersion = "1.7.0"
ext.libraries = [
hadoop_hdfs : "org.apache.hadoop:hadoop-hdfs:$hadoopCDHVersion",
hadoop_common : "org.apache.hadoop:hadoop-common:$hadoopCDHVersion",
gson : 'com.google.code.gson:gson:2.8.0',
// corefan_spark_testing : "corefan:corefan-spark-testing:$corefanVersion",
hbase_client : "org.apache.hbase:hbase-client:$hbaseCDHVersion",
]
}