Skip to content

Commit 171aaca

Browse files
build(deps): bump jUnitVersion from 5.9.2 to 5.12.2 in /example (#131)
* build(deps): bump jUnitVersion from 5.9.2 to 5.12.2 in /example Bumps `jUnitVersion` from 5.9.2 to 5.12.2. Updates `org.junit.jupiter:junit-jupiter-api` from 5.9.2 to 5.12.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.9.2...r5.12.2) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.9.2 to 5.12.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.9.2...r5.12.2) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-version: 5.12.2 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-version: 5.12.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * build(example): add junit-platform-launcher as testRuntimeOnly due to issues if missing --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marcel Carlé <hi-github@mcarle.io>
1 parent 7bd5752 commit 171aaca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ plugins {
77

88
val konvertVersion = "0.1.0-SNAPSHOT"
99

10-
val jUnitVersion = "5.9.2"
10+
val jUnitVersion = "5.12.2"
1111

1212
dependencies {
1313
implementation(kotlin("stdlib-jdk8"))
1414
implementation("io.mcarle:konvert-api:$konvertVersion")
1515
implementation("io.mcarle:konvert-spring-annotations:$konvertVersion")
1616
testImplementation("org.junit.jupiter:junit-jupiter-api:$jUnitVersion")
1717
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$jUnitVersion")
18+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1819

1920
// KSP to generate mapping code
2021
ksp("io.mcarle:konvert:$konvertVersion")

0 commit comments

Comments
 (0)