Skip to content

Commit

Permalink
updating hadoop version to match the version in dataproc
Browse files Browse the repository at this point in the history
  • Loading branch information
lbergelson committed Jan 31, 2018
1 parent a0f0776 commit 23066ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ final htsjdkVersion = System.getProperty('htsjdk.version','2.14.1')
final picardVersion = System.getProperty('picard.version','2.17.2')
final barclayVersion = System.getProperty('barclay.version','2.1.0')
final sparkVersion = System.getProperty('spark.version', '2.2.0')
final hadoopVersion = System.getProperty('hadoop.version', '2.8.2')
final hadoopBamVersion = System.getProperty('hadoopBam.version','7.9.1')
final genomicsdbVersion = System.getProperty('genomicsdb.version','0.9.2-proto-3.0.0-beta-1+uuid-static')
final testNGVersion = '6.11'
Expand Down Expand Up @@ -208,13 +209,13 @@ dependencies {

compile 'org.jgrapht:jgrapht-core:0.9.1'
compile 'org.testng:testng:' + testNGVersion //compile instead of testCompile because it is needed for test infrastructure that needs to be packaged
compile 'org.apache.hadoop:hadoop-minicluster:2.7.2' //the version of minicluster should match the version of hadoop
compile 'org.apache.hadoop:hadoop-minicluster:' + hadoopVersion

compile('org.seqdoop:hadoop-bam:' + hadoopBamVersion) {
exclude group: 'org.apache.hadoop'
exclude module: 'htsjdk'
}
compile('org.apache.hadoop:hadoop-client:2.7.2') // should be a 'provided' dependency
compile('org.apache.hadoop:hadoop-client:' + hadoopVersion) // should be a 'provided' dependency
compile('com.github.jsr203hadoop:jsr203hadoop:1.0.3')

compile('de.javakaffee:kryo-serializers:0.41') {
Expand Down

0 comments on commit 23066ea

Please sign in to comment.