2021-05-19 06:35:31 -05:00
|
|
|
|
2020-06-08 08:32:38 -05:00
|
|
|
name := "bitcoin-s-bundle"
|
|
|
|
|
|
|
|
mainClass := Some("org.bitcoins.bundle.AppBundle")
|
|
|
|
|
2021-05-19 06:35:31 -05:00
|
|
|
|
|
|
|
|
2020-06-08 08:32:38 -05:00
|
|
|
|
|
|
|
publish / skip := true
|
|
|
|
|
|
|
|
// Fork a new JVM for 'run' and 'test:run' to avoid JavaFX double initialization problems
|
|
|
|
fork := true
|
2021-05-19 06:35:31 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|