Skip to content

Commit 55163fa

Browse files
committed
Add org.junit.platform:junit-platform-launcher
1 parent 46a4a21 commit 55163fa

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

docs/examples/junit5/redis/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ description = "Examples for docs"
33
dependencies {
44
api "io.lettuce:lettuce-core:6.4.0.RELEASE"
55

6-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.11.0"
7-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3"
8-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.11.0"
6+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
7+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.3'
8+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
9+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
910
testImplementation project(":testcontainers")
1011
testImplementation project(":junit-jupiter")
1112
testImplementation 'org.assertj:assertj-core:3.27.3'

modules/hivemq/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ dependencies {
1111
shaded("org.jboss.shrinkwrap:shrinkwrap-impl-base:1.2.6")
1212
shaded("net.lingala.zip4j:zip4j:2.11.5")
1313

14-
testImplementation("org.junit.jupiter:junit-jupiter:5.10.3")
14+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
15+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
1516
testImplementation(project(":junit-jupiter"))
1617
testImplementation("com.hivemq:hivemq-extension-sdk:4.32.0")
1718
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.3")

modules/junit-jupiter/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies {
1616
testImplementation 'org.assertj:assertj-core:3.27.3'
1717
testImplementation 'org.junit.jupiter:junit-jupiter'
1818

19+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
1920
testRuntimeOnly 'org.postgresql:postgresql:42.7.4'
2021
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
2122
}

0 commit comments

Comments
 (0)