Skip to content

Commit

Permalink
bitcoind: Extract Bisq 2 dependencies to wallet module
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Sep 10, 2024
1 parent b4cfcd1 commit 2957d1a
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 5 deletions.
4 changes: 0 additions & 4 deletions wallets/bitcoind/bitcoind/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
plugins {
id("bisq.java-library")
id("bisq.java-integration-tests")
id("bisq.protobuf")
}

dependencies {
implementation("bisq:persistence")

implementation(project(":core"))
implementation(project(":json-rpc"))

implementation(libs.typesafe.config)
implementation(libs.jeromq)

integrationTestImplementation(project(":regtest"))
Expand Down
3 changes: 2 additions & 1 deletion wallets/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ include("electrum")
include("elementsd")

include("process")
include("wallet")

rootProject.name = "wallets"
rootProject.name = "wallets"
15 changes: 15 additions & 0 deletions wallets/wallet/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
plugins {
id("bisq.java-library")
id("bisq.java-integration-tests")
id("bisq.protobuf")
}

dependencies {
implementation("bisq:persistence")

implementation("bitcoind:core")
implementation("bitcoind:bitcoind")
implementation("bitcoind:json-rpc")

implementation(libs.typesafe.config)
}

0 comments on commit 2957d1a

Please sign in to comment.