mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-25 07:17:32 +01:00
20 lines
No EOL
474 B
Scala
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
|
|
} |