hadoop word count

This commit is contained in:
xiongraorao
2018-07-31 15:12:27 +08:00
parent d64d3abed6
commit b9704c0144
14 changed files with 345 additions and 0 deletions

View File

@ -12,6 +12,7 @@ repositories {
maven {
//url 'https://mvnrepository.com/artifact/org.apache.storm/storm-core'
url 'http://clojars.org/repo/'
//url 'http://mirrors.163.com/maven/#browse/browse/components:maven-public/'
}
}
@ -27,6 +28,16 @@ dependencies {
// https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.0'
// https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-common
compile group: 'org.apache.hadoop', name: 'hadoop-common', version: '2.7.4'
// https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-hdfs
compile group: 'org.apache.hadoop', name: 'hadoop-hdfs', version: '2.7.4'
// https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-mapreduce-client-core
compile group: 'org.apache.hadoop', name: 'hadoop-mapreduce-client-core', version: '2.7.4'
}
jar {