Skip to content

Commit 41f5464

Browse files
Bump junit5.version from 5.11.4 to 5.12.1 (#146)
* Bump junit5.version from 5.11.4 to 5.12.1 Bumps `junit5.version` from 5.11.4 to 5.12.1. Updates `org.junit.vintage:junit-vintage-engine` from 5.11.4 to 5.12.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.11.4...r5.12.1) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.4 to 5.12.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.11.4...r5.12.1) --- updated-dependencies: - dependency-name: org.junit.vintage:junit-vintage-engine dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Overwrite junit-platform-launcher version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andreas Dangel <[email protected]>
1 parent 6940210 commit 41f5464

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@
6565
<pmd.langtest.version>7.12.0</pmd.langtest.version>
6666
<kotlin.version>2.0.21</kotlin.version>
6767
<kotest.version>5.9.1</kotest.version>
68-
<junit5.version>5.11.4</junit5.version>
68+
<junit5.version>5.12.1</junit5.version>
69+
<junit5.platform.version>1.12.1</junit5.platform.version>
6970

7071
<!-- Those have different values based on the profile -->
7172
<openjfx.scope>provided</openjfx.scope>
@@ -532,6 +533,13 @@
532533

533534
<dependencyManagement>
534535
<dependencies>
536+
<dependency>
537+
<groupId>org.junit</groupId>
538+
<artifactId>junit-bom</artifactId>
539+
<version>${junit5.version}</version>
540+
<scope>import</scope>
541+
</dependency>
542+
535543
<!-- ensure kotlin version, since version from pmd-lang-test (pmd.core.version) might be older -->
536544
<dependency>
537545
<groupId>org.jetbrains.kotlin</groupId>
@@ -784,6 +792,17 @@
784792
<scope>test</scope>
785793
</dependency>
786794

795+
<!--
796+
explicitly overwrite junit-platform-launcher, as
797+
kotest might bring a different version.
798+
-->
799+
<dependency>
800+
<groupId>org.junit.platform</groupId>
801+
<artifactId>junit-platform-launcher</artifactId>
802+
<version>${junit5.platform.version}</version>
803+
<scope>test</scope>
804+
</dependency>
805+
787806
<dependency>
788807
<!-- Contains stuff like FunSpec, etc -->
789808
<groupId>io.kotest</groupId>

0 commit comments

Comments
 (0)