bitcoin-s/app/cli/cli.sbt
Chris Stewart e4d38ba53a
2022 05 05 OS specific jlink builds (#4322)
* Add OS specific zips

* Try to fix windows build

* Try to fix windows build shell

* Try to see if double zip works w/o mac verified developer error

* Add bash script to handle making file executable and make it non quarantine on mac

* Do chmod regardless of os

* Remove chmod as that cannot work by definition, revert to only packaging stage/ directory

* Make java exectuable on every OS

* refactor CommonSettings.jlinkIgnore

* Try to build appServer

* Make cli use jlink

* Make bash scripts more generic on mac

* Remove feature branch on release.yml

* Fix startup scripts
2022-05-07 18:42:02 -05:00

12 lines
220 B
Scala

name := "bitcoin-s-cli"
libraryDependencies ++= Deps.cli.value
nativeImageOptions ++= Seq(
"-H:+ReportExceptionStackTraces",
"--initialize-at-build-time",
"--no-fallback",
"--enable-http",
"--enable-https"
)