Skip to content

Commit 5195a86

Browse files
Add JUnit Platform Launcher
Closes gh-340
1 parent e6a58eb commit 5195a86

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

context-propagation/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ plugins {
33
}
44

55
dependencies {
6-
testImplementation 'org.junit.jupiter:junit-jupiter'
6+
testImplementation libs.junitJupiter
7+
testRuntimeOnly libs.junitPlatformLauncher
78
testImplementation libs.assertj
89
testImplementation libs.mockitoCore
910
}

gradle/libs.versions.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ assertj = "3.24.2"
33
mockito = "5.5.0"
44
javaFormatForPlugins = "0.0.43"
55
jsr305 = "3.0.2"
6-
junit = "5.10.5"
6+
junit = "5.12.1"
77

88
[libraries]
99
assertj = { module = "org.assertj:assertj-core", version.ref = "assertj" }
1010
javaFormatForPlugins = { module = "io.spring.javaformat:spring-javaformat-checkstyle", version.ref = "javaFormatForPlugins" }
1111
jsr305 = { module = "com.google.code.findbugs:jsr305", version.ref = "jsr305" }
1212
junitBom = { module = "org.junit:junit-bom", version.ref = "junit" }
13+
junitJupiter = { module = "org.junit.jupiter:junit-jupiter" }
14+
junitPlatformLauncher = { module = "org.junit.platform:junit-platform-launcher" }
1315
mockitoCore = { module = "org.mockito:mockito-core", version.ref = "mockito" }
1416

1517
# plugin dependencies

0 commit comments

Comments
 (0)