Fix wrong junit-platform-commons version

This commit is contained in:
Andreas Dangel 2023-01-20 20:13:48 +01:00
parent ac2e4d881b
commit eff73bdb0b
No known key found for this signature in database
GPG Key ID: 93450DF2DF9A3FA3

10
pom.xml
View File

@ -931,6 +931,16 @@
<artifactId>protobuf-java</artifactId>
<version>3.16.3</version>
</dependency>
<!-- Make sure to use the correct version the JUnit5 needs. E.g. 5.8.2 needs 1.8.2
Kotest might bring a wrong version.
see junit5.version -->
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>1.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>