Skip to content

Commit

Permalink
bitcoind: Remove dependency to root version catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Oct 9, 2024
1 parent 75758b8 commit b7db7db
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
2 changes: 1 addition & 1 deletion wallets/bitcoind/build-logic/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("../../../gradle/libs.versions.toml"))
from(files("../gradle/libs.versions.toml"))
}
}
}
Expand Down
26 changes: 26 additions & 0 deletions wallets/bitcoind/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[versions]
assertj-core-lib = { strictly = '3.22.0' }
bouncycastle-lib = { strictly = '1.69' } # Oldest version without known CVEs
google-guava-lib = { strictly = '31.1-jre' }
jeromq-lib = { strictly = '0.5.2' }
junit-jupiter-lib = { strictly = '5.8.2' }
logback-lib = { strictly = '1.2.11' }
lombok-lib = { strictly = '1.18.34' }
mockito-lib = { strictly = '4.11.0' }
slf4j-lib = { strictly = '1.7.36' }
square-moshi-lib = { strictly = '1.14.0' }
square-okhttp-libs = { strictly = '4.10.0' }

[libraries]
assertj-core = { module = 'org.assertj:assertj-core', version.ref = 'assertj-core-lib' }
bouncycastle-pg = { module = 'org.bouncycastle:bcpg-jdk15on', version.ref = 'bouncycastle-lib' }
google-guava = { module = 'com.google.guava:guava', version.ref = 'google-guava-lib' }
jeromq = { module = 'org.zeromq:jeromq', version.ref = 'jeromq-lib' }
junit-jupiter = { module = 'org.junit.jupiter:junit-jupiter', version.ref = 'junit-jupiter-lib' }
logback-classic = { module = 'ch.qos.logback:logback-classic', version.ref = 'logback-lib' }
logback-core = { module = 'ch.qos.logback:logback-core', version.ref = 'logback-lib' }
lombok = { module = 'org.projectlombok:lombok', version.ref = 'lombok-lib' }
mockito = { module = 'org.mockito:mockito-core', version.ref = 'mockito-lib' }
slf4j-api = { module = 'org.slf4j:slf4j-api', version.ref = 'slf4j-lib' }
square-moshi = { module = 'com.squareup.moshi:moshi', version.ref = 'square-moshi-lib' }
square-okhttp-bom = { module = 'com.squareup.okhttp3:okhttp-bom', version.ref = 'square-okhttp-libs' }
8 changes: 0 additions & 8 deletions wallets/bitcoind/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@ pluginManagement {
includeBuild("build-logic")
}

dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("../../gradle/libs.versions.toml"))
}
}
}

include("core")
include("bitcoind")
include("json-rpc")
Expand Down

0 comments on commit b7db7db

Please sign in to comment.