We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc0e539 commit a05d777Copy full SHA for a05d777
project/SparkBuild.scala
@@ -290,6 +290,12 @@ object SparkBuild extends PomBuild {
290
sparkGenjavadocSettings ++
291
compilerWarningSettings ++
292
(if (noLintOnCompile) Nil else enableScalaStyle) ++ Seq(
293
+ (Compile / dependencyClasspath) := (Compile / dependencyClasspath).value
294
+ .filterNot(file => {
295
+ val name = file.toString
296
+ (name.contains("orc-core") || name.contains("orc-format")) &&
297
+ !name.contains("shaded-protobuf")
298
+ }),
299
(Compile / exportJars) := true,
300
(Test / exportJars) := false,
301
javaHome := sys.env.get("JAVA_HOME")
0 commit comments