mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-21 14:04:16 +01:00
build.gradle: update SLF4J to 2.0.7
Starting with SLF4J 2.0.0, we can use the fluent logger API.
This commit is contained in:
parent
2e3e6d4485
commit
b528fb5180
6 changed files with 8 additions and 8 deletions
|
@ -13,12 +13,12 @@ dependencies {
|
|||
api 'org.bouncycastle:bcprov-jdk15to18:1.72'
|
||||
api 'com.google.guava:guava:31.1-android'
|
||||
api 'com.google.protobuf:protobuf-javalite:3.21.12'
|
||||
implementation 'org.slf4j:slf4j-api:1.7.36'
|
||||
implementation 'org.slf4j:slf4j-api:2.0.7'
|
||||
implementation 'net.jcip:jcip-annotations:1.0'
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
testImplementation 'org.easymock:easymock:5.1.0'
|
||||
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
|
||||
testImplementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
||||
testImplementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
||||
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.11'
|
||||
testImplementation 'org.hamcrest:hamcrest-library:2.2'
|
||||
testImplementation 'pl.pragmatists:JUnitParams:1.1.1'
|
||||
|
|
|
@ -6,7 +6,7 @@ plugins {
|
|||
dependencies {
|
||||
implementation project(':bitcoinj-core')
|
||||
implementation 'info.picocli:picocli:4.7.1'
|
||||
implementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
||||
implementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
||||
}
|
||||
|
||||
sourceCompatibility = 11
|
||||
|
|
|
@ -8,7 +8,7 @@ dependencies {
|
|||
implementation project(':bitcoinj-core')
|
||||
implementation project(':bitcoinj-examples')
|
||||
|
||||
testImplementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
||||
testImplementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.0"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.0"
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
|
|
|
@ -6,7 +6,7 @@ plugins {
|
|||
dependencies {
|
||||
implementation project(':bitcoinj-core')
|
||||
implementation 'info.picocli:picocli:4.7.1'
|
||||
implementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
||||
implementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
||||
}
|
||||
|
||||
sourceCompatibility = 11
|
||||
|
|
|
@ -9,7 +9,7 @@ dependencies {
|
|||
implementation project(':bitcoinj-core')
|
||||
implementation 'de.jensd:fontawesomefx:8.0.0'
|
||||
implementation 'com.google.zxing:core:3.5.1'
|
||||
implementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
||||
implementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
||||
}
|
||||
|
||||
javafx {
|
||||
|
|
|
@ -19,7 +19,7 @@ boolean hasToolchains = (GradleVersion.current().compareTo(toolchainsMinVersion)
|
|||
dependencies {
|
||||
implementation project(':bitcoinj-core')
|
||||
implementation 'info.picocli:picocli:4.7.1'
|
||||
implementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
||||
implementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
||||
if (hasAnnotationProcessor) {
|
||||
annotationProcessor 'info.picocli:picocli-codegen:4.7.1'
|
||||
} else {
|
||||
|
@ -29,7 +29,7 @@ dependencies {
|
|||
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.0"
|
||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.0"
|
||||
|
||||
testImplementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
||||
testImplementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
||||
}
|
||||
|
||||
sourceCompatibility = 11
|
||||
|
|
Loading…
Add table
Reference in a new issue