-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle.kts
34 lines (33 loc) · 958 Bytes
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
rootProject.name = "bitbook"
include("cli")
include("cli:base")
include("cli:lnd")
include("cli:ownership")
include("backend")
include("backend:price")
include("backend:blockheight")
include("backend:address-transactions")
include("backend:transaction")
include("backend:models")
include("backend:provider:all")
include("backend:provider:base")
include("backend:provider:bitaps")
include("backend:provider:bitcoind")
include("backend:provider:blockchaininfo")
include("backend:provider:blockchair")
include("backend:provider:blockcypher")
include("backend:provider:blockstreaminfo")
include("backend:provider:btccom")
include("backend:provider:electrs")
include("backend:provider:fullstackcash")
include("backend:provider:mempoolspace")
include("backend:request")
include("backend:request:models")
include("lnd")
include("ownership")
dependencyResolutionManagement {
includeBuild("gradle/meta-plugins")
repositories {
mavenCentral()
}
}