Skip to content
Snippets Groups Projects
Commit 32370da4 authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Don't use forward slash in exclusion for JAR signature files

parent 9f0d9132
No related branches found
No related tags found
No related merge requests found
......@@ -236,7 +236,7 @@ object SparkBuild extends Build {
def extraAssemblySettings() = Seq(test in assembly := {}) ++ Seq(
mergeStrategy in assembly := {
case m if m.toLowerCase.endsWith("manifest.mf") => MergeStrategy.discard
case m if m.toLowerCase.matches("meta-inf/.*\\.sf$") => MergeStrategy.discard
case m if m.toLowerCase.matches("meta-inf.*\\.sf$") => MergeStrategy.discard
case "reference.conf" => MergeStrategy.concat
case _ => MergeStrategy.first
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment