Skip to content

Commit 518e773

Browse files
Bump org.junit.jupiter:junit-jupiter from 5.11.4 to 5.12.0 (#174)
* Bump org.junit.jupiter:junit-jupiter from 5.11.4 to 5.12.0 Bumps [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) from 5.11.4 to 5.12.0. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.11.4...r5.12.0) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Add junit-platform-launcher to classpath --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: StefMa <StefMaDev@outlook.com>
1 parent 4e74a15 commit 518e773

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ repositories {
1414
dependencies {
1515
implementation(libs.androidGradlePlugin)
1616

17-
testImplementation(libs.test.junit)
1817
testImplementation(libs.test.strikt)
18+
testImplementation(platform(libs.test.junit.bom))
19+
testImplementation(libs.test.junit)
20+
testRuntimeOnly(libs.test.junit.launcher)
1921
}
2022

2123
gradlePlugin {

gradle/libs.versions.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
[versions]
2+
junit = "5.12.0"
3+
14
[libraries]
25
androidGradlePlugin = "com.android.tools.build:gradle:8.9.0"
3-
test-junit = "org.junit.jupiter:junit-jupiter:5.11.4"
6+
test-junit-bom = { group="org.junit", name="junit-bom", version.ref ="junit" }
7+
test-junit = { group="org.junit.jupiter", name="junit-jupiter" }
8+
test-junit-launcher = { group="org.junit.platform", name="junit-platform-launcher" }
49
test-strikt = "io.strikt:strikt-core:0.35.1"
510

611
[plugins]

0 commit comments

Comments
 (0)