Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
version = '0.18-SNAPSHOT'

dependencies {
api 'org.jspecify:jspecify:1.0.0'
api 'org.jspecify:jspecify:1.0.1'

testImplementation project(':bitcoinj-test-support')
testImplementation 'junit:junit:4.13.2'
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = '0.18-SNAPSHOT'

dependencies {
api project(':bitcoinj-base')
api 'org.jspecify:jspecify:1.0.0'
api 'org.jspecify:jspecify:1.0.1'
api 'org.bouncycastle:bcprov-jdk15to18:1.85.1'
api 'com.google.guava:guava:33.6.0-android'
api 'com.google.protobuf:protobuf-javalite:4.35.1'
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

dependencies {
implementation project(':bitcoinj-core')
implementation 'org.jspecify:jspecify:1.0.0'
implementation 'org.jspecify:jspecify:1.0.1'
implementation 'info.picocli:picocli:4.7.7'
implementation 'org.slf4j:slf4j-jdk14:2.0.18'
}
Expand Down
2 changes: 1 addition & 1 deletion integration-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
dependencies {
implementation project(':bitcoinj-core')
implementation project(':bitcoinj-examples')
api 'org.jspecify:jspecify:1.0.0'
api 'org.jspecify:jspecify:1.0.1'

testImplementation 'org.slf4j:slf4j-jdk14:2.0.18'
testImplementation platform('org.junit:junit-bom:6.1.2')
Expand Down
2 changes: 1 addition & 1 deletion test-support/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

dependencies {
api project(':bitcoinj-base')
api 'org.jspecify:jspecify:1.0.0'
api 'org.jspecify:jspecify:1.0.1'
}

tasks.withType(JavaCompile) {
Expand Down
2 changes: 1 addition & 1 deletion tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation project(':bitcoinj-core')
implementation 'org.jspecify:jspecify:1.0.0'
implementation 'org.jspecify:jspecify:1.0.1'
implementation 'info.picocli:picocli:4.7.7'
implementation 'org.slf4j:slf4j-jdk14:2.0.18'
}
Expand Down
2 changes: 1 addition & 1 deletion wallettemplate/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation project(':bitcoinj-core')
implementation 'com.google.guava:guava:33.6.0-jre'
implementation 'com.google.zxing:core:3.5.4'
implementation 'org.jspecify:jspecify:1.0.0'
implementation 'org.jspecify:jspecify:1.0.1'
implementation 'org.slf4j:slf4j-api:2.0.18'

runtimeOnly 'org.slf4j:slf4j-jdk14:2.0.18'
Expand Down
2 changes: 1 addition & 1 deletion wallettool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ boolean hasGraalVM = GradleVersion.current() >= graalVMMinVersion
dependencies {
implementation project(':bitcoinj-core')
implementation 'info.picocli:picocli:4.7.7'
implementation 'org.jspecify:jspecify:1.0.0'
implementation 'org.jspecify:jspecify:1.0.1'
implementation 'org.slf4j:slf4j-jdk14:2.0.18'
if (hasAnnotationProcessor) {
annotationProcessor 'info.picocli:picocli-codegen:4.7.7'
Expand Down
Loading