Skip to content

Instantly share code, notes, and snippets.

@BowlingX
Created November 21, 2012 15:02
Show Gist options
  • Save BowlingX/4125278 to your computer and use it in GitHub Desktop.
Save BowlingX/4125278 to your computer and use it in GitHub Desktop.
remove about
mergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) =>
{
case PathList("javax", "servlet", xs @ _*) => (xs map {_.toLowerCase}) match {
case ("about.html" :: Nil) => MergeStrategy.discard
case _ => MergeStrategy.deduplicate
}
case x => old(x)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment