Skip to content

Commit

Permalink
JUnit 5.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
prdoyle committed Jul 6, 2024
1 parent 130eb9f commit e0d083f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions bosk-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ dependencies {
// It's gross that we need to repeat the version info here.
// There must be a clean way to do this in Gradle??
implementation 'org.mongodb:mongodb-driver-sync:4.1.2'
implementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
implementation 'org.junit.jupiter:junit-jupiter-params:5.10.1'
runtimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
implementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
implementation 'org.junit.jupiter:junit-jupiter-params:5.10.3'
runtimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
}

// SpotBugs warnings on test code are not useful and often counterproductive
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/groovy/bosk.development.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ dependencies {
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
testCompileOnly "org.projectlombok:lombok:1.18.30"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"

testImplementation "org.testcontainers:testcontainers:1.19.3"
testImplementation "org.testcontainers:junit-jupiter:1.19.3"
Expand Down
6 changes: 3 additions & 3 deletions lib-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ dependencies {
// It's gross that we need to repeat the version info here.
// There must be a clean way to do this in Gradle??
implementation 'org.mongodb:mongodb-driver-sync:4.1.2'
implementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
implementation 'org.junit.jupiter:junit-jupiter-params:5.10.1'
runtimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
implementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
implementation 'org.junit.jupiter:junit-jupiter-params:5.10.3'
runtimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
}

spotbugsMain.enabled = false // Spotbugs is counterproductive on test code

0 comments on commit e0d083f

Please sign in to comment.