mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-24 06:57:51 +01:00
18 lines
566 B
Scala
18 lines
566 B
Scala
name := "bitcoin-s-bundle"
|
|
|
|
mainClass := Some("org.bitcoins.bundle.gui.BundleGUI")
|
|
|
|
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.gui.BundleGUI")
|
|
|
|
assembly / assemblyJarName := s"${name.value}.jar"
|
|
|
|
assembly / assemblyMergeStrategy := {
|
|
case PathList("META-INF", _ @_*) => MergeStrategy.discard
|
|
case PathList("reference.conf", _ @_*) => MergeStrategy.concat
|
|
case _ => MergeStrategy.first
|
|
}
|