mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 01:40:55 +01:00
13 lines
392 B
Plaintext
13 lines
392 B
Plaintext
|
name := "bitcoin-s-bitcoind-rpc-test"
|
||
|
|
||
|
libraryDependencies ++= Deps.bitcoindRpcTest(scalaVersion.value)
|
||
|
|
||
|
lazy val downloadBitcoind = taskKey[Unit] {
|
||
|
"Download bitcoind binaries, extract to ./bitcoind-binaries"
|
||
|
}
|
||
|
|
||
|
import java.nio.file.Paths
|
||
|
lazy val bitcoindRpc = project in Paths.get("..", "bitcoind-rpc").toFile
|
||
|
|
||
|
Test / test := (Test / test dependsOn bitcoindRpc / downloadBitcoind).value
|