mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-20 02:11:40 +01:00
c2f37335b8
* Bump Scala versions Support Scala 2.12.9 and 2.13.0. To make this easier, we delete the `scripts` project. Everything that was in here was covered by content on the website. We also delete the `doc` folder, as that was a remnant from when `scripts` was called `doc`. * Crib uPickle akka-http support while we wait for publish * Fix compiler warnings * Add note on test logging to contribution guide * Reduce duplication in Blockchain implementation * Use Scala 2.12 for website * Introduce compat package object for collections converters * Fix Either compiler warnings * Add sync-chain and create-wallet docs from deleted scripts * Fix rebase goofup
18 lines
451 B
Scala
18 lines
451 B
Scala
name := "bitcoin-s-cli"
|
|
|
|
libraryDependencies ++= Deps.cli(scalaVersion.value)
|
|
|
|
graalVMNativeImageOptions ++= Seq(
|
|
"-H:EnableURLProtocols=http",
|
|
// 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",
|
|
"--verbose"
|
|
)
|
|
|
|
enablePlugins(JavaAppPackaging, GraalVMNativeImagePlugin)
|
|
|
|
publish / skip := true
|