Add dependencies to support JUnit5 suites

This commit is contained in:
Andreas Dangel 2022-05-20 14:28:46 +02:00
parent e32ad74892
commit e669d3834f
No known key found for this signature in database
GPG Key ID: 93450DF2DF9A3FA3
2 changed files with 12 additions and 0 deletions

View File

@ -142,6 +142,11 @@
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>pl.pragmatists</groupId>
<artifactId>JUnitParams</artifactId>

View File

@ -807,6 +807,13 @@
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite</artifactId>
<version>1.9.0-M1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-lambda</artifactId>