build.gradle: update JUnit 5 to 5.9.3

This commit is contained in:
Andreas Schildbach 2023-07-16 13:05:14 +02:00
parent ada7fae5aa
commit 3284b6e309
2 changed files with 6 additions and 6 deletions

View file

@ -9,14 +9,14 @@ dependencies {
implementation project(':bitcoinj-examples')
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 "org.junit.jupiter:junit-jupiter-api:5.9.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.3"
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.easymock:easymock:5.1.0'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.15'
testImplementation 'org.hamcrest:hamcrest-library:2.2'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.0"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.3"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.3"
}
sourceCompatibility = 11

View file

@ -26,8 +26,8 @@ dependencies {
compileOnly 'info.picocli:picocli-codegen:4.7.1'
}
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.3"
testImplementation 'org.slf4j:slf4j-jdk14:2.0.7'
}