bitcoin-s/app/gui/gui.sbt
Nadav Kohen c31a4a3f8a Constructed simple Bitcoin-S wallet GUI (#1285)
* Constructed simple Bitcoin-S wallet GUI

* Added note about bitcoin-s server in doc

* Removed wallet dep from gui

* Replaced lambdas with constructors for compatibility with scala 2.11

* Fixed after rebase
2020-03-31 14:30:24 -05:00

12 lines
268 B
Scala

name := "bitcoin-s-gui"
libraryDependencies ++= Deps.gui
mainClass := Some("org.bitcoins.gui.WalletGUI")
enablePlugins(JavaAppPackaging)
publish / skip := true
// Fork a new JVM for 'run' and 'test:run' to avoid JavaFX double initialization problems
fork := true