Skip to content

Commit

Permalink
Upgrade junit-platform to 1.12.0
Browse files Browse the repository at this point in the history
Previously the version 1.9.3 was used which is incompatible with JUnit 1.12.0
  • Loading branch information
wendigo committed Feb 22, 2025
1 parent 19b658c commit 5e265a9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions airbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,9 @@
<dep.jmxutils.version>1.26</dep.jmxutils.version>
<dep.joda.version>2.13.1</dep.joda.version>
<dep.jsr305.version>3.0.2</dep.jsr305.version>
<!-- junit and junit-platform should have the same minor and patch versions -->
<dep.junit.version>5.12.0</dep.junit.version>
<dep.junit-platform.version>1.12.0</dep.junit-platform.version>
<dep.kotlin.version>2.1.10</dep.kotlin.version>
<dep.launcher.version>302</dep.launcher.version>
<dep.logback.version>1.5.16</dep.logback.version>
Expand Down Expand Up @@ -915,6 +917,18 @@
${air.test.jvm.additional-arguments}
</argLine>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<version>${dep.junit-platform.version}</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${dep.junit-platform.version}</version>
</dependency>
</dependencies>
</plugin>

<plugin>
Expand Down

0 comments on commit 5e265a9

Please sign in to comment.