mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-20 18:24:48 +01:00
f4e43ec4d8
* Add documentation about how the cli can be built with a native image * Finish rest of documentation on building command line client for bitcoin-s * Add missing akka actor on walletServer classpath, add plugins to be able to build the walletServer as a standalone jar * Add server.md * Rename walletServer -> appServer * Address code review, add missing main class in server project * Address code review
24 lines
645 B
Scala
24 lines
645 B
Scala
name := "bitcoin-s-server"
|
|
|
|
// Ensure actor system is shut down
|
|
// when server is quit
|
|
Compile / fork := true
|
|
|
|
libraryDependencies ++= Deps.server(scalaVersion.value)
|
|
|
|
mainClass := Some("org.bitcoins.server.Main")
|
|
|
|
graalVMNativeImageOptions ++= Seq(
|
|
"-H:EnableURLProtocols=http",
|
|
|
|
"-H:+ReportExceptionStackTraces",
|
|
// builds a stand-alone image or reports a failure
|
|
"--no-fallback",
|
|
// without this, we get complaints about Function3
|
|
// I'm not sure why, though...
|
|
"--initialize-at-build-time=scala.Function3",
|
|
"--report-unsupported-elements-at-runtime",
|
|
"--verbose"
|
|
)
|
|
|
|
enablePlugins(JavaAppPackaging, GraalVMNativeImagePlugin) |