@@ -45,6 +45,9 @@ object SharkBuild extends Build {
45
45
val excludeKyro = ExclusionRule (organization = " de.javakaffee" )
46
46
val excludeHadoop = ExclusionRule (organization = " org.apache.hadoop" )
47
47
val excludeNetty = ExclusionRule (organization = " org.jboss.netty" )
48
+ val excludeJackson = ExclusionRule (organization = " org.codehaus.jackson" )
49
+ val excludeAsm = ExclusionRule (organization = " asm" )
50
+ val excludeSnappy = ExclusionRule (organization = " org.xerial.snappy" )
48
51
49
52
def coreSettings = Defaults .defaultSettings ++ Seq (
50
53
@@ -100,7 +103,7 @@ object SharkBuild extends Build {
100
103
" org.apache.spark" %% " spark-core" % SPARK_VERSION ,
101
104
" org.apache.spark" %% " spark-repl" % SPARK_VERSION ,
102
105
" com.google.guava" % " guava" % " 14.0.1" ,
103
- " org.apache.hadoop" % " hadoop-client" % HADOOP_VERSION excludeAll(excludeNetty),
106
+ " org.apache.hadoop" % " hadoop-client" % HADOOP_VERSION excludeAll(excludeJackson, excludeNetty, excludeAsm ),
104
107
// See https://code.google.com/p/guava-libraries/issues/detail?id=1095
105
108
" com.google.code.findbugs" % " jsr305" % " 1.3.+" ,
106
109
@@ -112,7 +115,7 @@ object SharkBuild extends Build {
112
115
// Test infrastructure
113
116
" org.scalatest" %% " scalatest" % " 1.9.1" % " test" ,
114
117
" junit" % " junit" % " 4.10" % " test" ,
115
- " net.java.dev.jets3t" % " jets3t" % " 0.9.0 " ,
118
+ " net.java.dev.jets3t" % " jets3t" % " 0.7.1 " ,
116
119
" com.novocode" % " junit-interface" % " 0.8" % " test" ) ++
117
120
(if (TACHYON_ENABLED ) Some (" org.tachyonproject" % " tachyon" % " 0.3.0-SNAPSHOT" excludeAll(excludeKyro, excludeHadoop) ) else None ).toSeq
118
121
)
0 commit comments