Skip to content

Commit 5126a70

Browse files
Fix juniper package issues (#1325)
* We currently specify two packages for junit-jupiter packages. These are also provided as a consolidated package, which is preferable to use as dependabot tries to update each one individually. This fails as all junit-juniper packages need to be aligned. This alignment can be ensured by referencing the platform BOM for junit.
1 parent 339cf4d commit 5126a70

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

e2e-tests/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,18 @@ dependencies {
1616
implementation 'org.apache.qpid:qpid-jms-client:2.7.0'
1717
implementation "org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1.1"
1818
implementation 'org.mongodb:mongo-java-driver:3.12.14'
19+
testImplementation(platform('org.junit:junit-bom:5.13.4'))
20+
testImplementation 'org.junit.jupiter:junit-jupiter'
1921
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.19.2'
2022
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.19.2'
2123
testImplementation 'commons-io:commons-io:2.20.0'
2224
testImplementation 'org.awaitility:awaitility:4.3.0'
23-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
2425
testImplementation "org.assertj:assertj-core:3.27.4"
2526
testImplementation 'ch.qos.logback:logback-classic:1.5.18'
2627
testImplementation 'org.xmlunit:xmlunit-assertj3:2.10.3'
2728
testImplementation 'org.apache.httpcomponents.client5:httpclient5:5.5'
2829

29-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
30+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
3031
}
3132

3233
tasks.withType(Test) {

0 commit comments

Comments
 (0)