Skip to content

Commit 2772d6e

Browse files
committed
Depend on JUnit 4.12 instead of JUnit 5.5.1
While JUnit 5.5.1 (API) is being declared as a dependency, the actual tests are all using JUnit 4.x.
1 parent 747400e commit 2772d6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

maven/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<maven-plugin-api.version>3.0</maven-plugin-api.version>
3333
<maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version>
3434

35-
<junit.version>5.5.1</junit.version>
35+
<junit.version>4.12</junit.version>
3636
<mockito.version>3.1.0</mockito.version>
3737

3838
<fest-assert.version>1.4</fest-assert.version>
@@ -72,8 +72,8 @@
7272

7373
<!-- Test stuff -->
7474
<dependency>
75-
<groupId>org.junit.jupiter</groupId>
76-
<artifactId>junit-jupiter-api</artifactId>
75+
<groupId>junit</groupId>
76+
<artifactId>junit</artifactId>
7777
<version>${junit.version}</version>
7878
<scope>test</scope>
7979
</dependency>

0 commit comments

Comments
 (0)