-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (26 loc) · 840 Bytes
/
build.gradle
File metadata and controls
36 lines (26 loc) · 840 Bytes
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
apply plugin: 'java'
apply plugin: 'eclipse'
version = '1.1.1-SNAPSHOT'
group = 'com.syscrest.oozie'
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
repositories {
mavenCentral()
mavenRepo name:'cloudera', urls:"http://repository.cloudera.com/artifactory/cloudera-repos/"
}
test {
maxParallelForks = 1;
forkEvery = 1;
}
dependencies {
compile group: 'org.apache.hadoop', name: 'hadoop-core', version: '2.5.0-mr1-cdh5.2.1'
compile ('org.apache.hadoop:hadoop-common:2.5.0-cdh5.2.1')
compile ('org.apache.hadoop:hadoop-hdfs:2.5.0-cdh5.2.1') {
exclude group: 'commons-daemon'
}
compile 'org.hamcrest:hamcrest-all:1.1'
compile 'org.slf4j:slf4j-log4j12:1.6.4'
compile 'org.apache.oozie:oozie-core:4.0.0-cdh5.2.1'
compile 'org.apache.oozie:oozie-client:4.0.0-cdh5.2.1'
testCompile 'junit:junit:4.8.2'
}