imported template.assembly.sbt
79bbdfdc
Hari Sekhon
committed
1 changed file
template.assembly.sbt
/template.assembly.sbt+34
/template.assembly.sbt
Add comment 1 Plus  //
Add comment 2 Plus  // Author: Hari Sekhon
Add comment 3 Plus  // Date: [% DATE # 2015-05-25 23:27:15 +0100 (Mon, 25 May 2015) %]
Add comment 4 Plus  //
Add comment 5 Plus  // [% VIM_TAGS %]
Add comment 6 Plus  //
Add comment 7 Plus  // [% URL %]
Add comment 8 Plus  //
Add comment 9 Plus  // [% LICENSE %]
Add comment 10 Plus  //
Add comment 11 Plus  // [% MESSAGE %]
Add comment 12 Plus  //
Add comment 13 Plus  // [% LINKEDIN %]
Add comment 14 Plus  //
Add comment 15 Plus  
Add comment 16 Plus  // https://github.com/sbt/sbt-assembly
Add comment 17 Plus  
Add comment 18 Plus  import AssemblyKeys._
Add comment 19 Plus  
Add comment 20 Plus  assemblySettings
Add comment 21 Plus  
Add comment 22 Plus  mergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) =>
Add comment 23 Plus   {
Add comment 24 Plus   case PathList("META-INF", "maven","org.slf4j","slf4j-api", p) if p.startsWith("pom") => MergeStrategy.discard
Add comment 25 Plus   case PathList("com", "esotericsoftware", "minlog", p) if p.startsWith("Log") => MergeStrategy.first
Add comment 26 Plus   // too many things here condensed down to just dedupe all
Add comment 27 Plus   case PathList("com", "google", "common", "base", p) => MergeStrategy.first
Add comment 28 Plus   case PathList("org", "apache", "commons", p @ _*) => MergeStrategy.first
Add comment 29 Plus   case PathList("org", "apache", "hadoop", p @ _*) if p.contains("package-info.class") => MergeStrategy.first
Add comment 30 Plus   case PathList("org", "apache", "spark", "unused", p @ _*) => MergeStrategy.first
Add comment 31 Plus   case x => old(x)
Add comment 32 Plus   }
Add comment 33 Plus  }
Add comment 34 Plus