bitcoin-s/app/bundle/bundle.sbt
Chris Stewart ba91ba5596
Add assembly instructions for bundle project (#3104)
* Add assembly instructions for bundle project

* revert reference.conf
2021-05-19 06:35:31 -05:00

20 lines
No EOL
474 B
Scala

name := "bitcoin-s-bundle"
mainClass := Some("org.bitcoins.bundle.AppBundle")
publish / skip := true
// Fork a new JVM for 'run' and 'test:run' to avoid JavaFX double initialization problems
fork := true
assembly / mainClass := Some("org.bitcoins.bundle.AppBundle")
assemblyMergeStrategy in assembly := {
case PathList("META-INF", _ @ _*) => MergeStrategy.discard
case PathList("reference.conf", _ @ _*) => MergeStrategy.concat
case _ => MergeStrategy.first
}