mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-20 02:11:40 +01:00
e4d38ba53a
* 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
12 lines
220 B
Scala
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"
|
|
)
|