Created
September 16, 2016 01:59
-
-
Save ianjuma/f4633c425d3d4d17e9c8f1fec9c21957 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val aopMerge = new sbtassembly.MergeStrategy { | |
val name = "aopMerge" | |
import scala.xml._ | |
import scala.xml.dtd._ | |
def apply(tempDir: File, path: String, files: Seq[File]): Either[String, Seq[(File, String)]] = { | |
val dt = DocType("aspectj", PublicID("-//AspectJ//DTD//EN", "http://www.eclipse.org/aspectj/dtd/aspectj.dtd"), Nil) | |
val file = MergeStrategy.createMergeTarget(tempDir, path) | |
val xmls: Seq[Elem] = files.map(XML.loadFile) | |
val aspectsChildren: Seq[Node] = xmls.flatMap(_ \\ "aspectj" \ "aspects" \ "_") | |
val weaverChildren: Seq[Node] = xmls.flatMap(_ \\ "aspectj" \ "weaver" \ "_") | |
val options: String = xmls.map(x => (x \\ "aspectj" \ "weaver" \ "@options").text).mkString(" ").trim | |
val weaverAttr = if (options.isEmpty) Null else new UnprefixedAttribute("options", options, Null) | |
val aspects = new Elem(null, "aspects", Null, TopScope, false, aspectsChildren: _*) | |
val weaver = new Elem(null, "weaver", weaverAttr, TopScope, false, weaverChildren: _*) | |
val aspectj = new Elem(null, "aspectj", Null, TopScope, false, aspects, weaver) | |
XML.save(file.toString, aspectj, "UTF-8", xmlDecl = false, dt) | |
IO.append(file, IO.Newline.getBytes(IO.defaultCharset)) | |
Right(Seq(file -> path)) | |
} | |
} | |
lazy val assemblySettings = Seq( | |
assemblyMergeStrategy 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.*\\.properties") => MergeStrategy.discard | |
case PathList("META-INF", "aop.xml") => aopMerge | |
case PathList(ps @ _*) if ps.last endsWith ".txt.1" => MergeStrategy.first | |
case "reference.conf" => MergeStrategy.concat | |
case "application.conf" => MergeStrategy.concat | |
case x => | |
val oldStrategy = (assemblyMergeStrategy in assembly).value | |
oldStrategy(x) | |
}, | |
test in assembly := {} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment