bitcoin-s/project/Projects.scala
Chris Stewart 52dcf51e82
Automatically download binaries if they are used in test suite (#4005)
* Remove download binary scripts from CI, try to make binary downloads contingent on tests being run in a project

* Cleanup docs to remove unecessary downloadBitcoind
2022-01-23 17:43:30 -06:00

12 lines
392 B
Scala

import sbt._
import java.nio.file.Paths
object Projects {
val core = project in file("..") / "core"
val eclairRpc = project in file("..") / "eclair-rpc"
val bitcoindRpc = project in file("..") / "bitcoind-rpc"
val lndRpc = project in file("..") / "lnd-rpc"
val clightningRpc = project in file("..") / "clightning-rpc"
val secp256k1jni = project in file("..") / "secp256k1jni "
}