build.gradle: update JUnit 5 to 5.10.3

This commit is contained in:
Andreas Schildbach 2024-08-03 09:52:53 +02:00
parent 33a69dcebe
commit a91321af91
3 changed files with 8 additions and 8 deletions

View File

@ -8,14 +8,14 @@ dependencies {
implementation project(':bitcoinj-examples')
testImplementation 'org.slf4j:slf4j-jdk14:2.0.13'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3"
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.easymock:easymock:5.4.0'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.16.1'
testImplementation 'org.hamcrest:hamcrest-library:3.0'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.3"
}
sourceCompatibility = 11

View File

@ -11,8 +11,8 @@ dependencies {
implementation 'org.slf4j:slf4j-jdk14:2.0.13'
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
}
javafx {

View File

@ -25,8 +25,8 @@ dependencies {
compileOnly 'info.picocli:picocli-codegen:4.7.6'
}
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
testImplementation 'org.slf4j:slf4j-jdk14:2.0.13'
}