bitcoin-s/app/server/server.sbt

24 lines
645 B
Text
Raw Normal View History

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)