Skip to content

Commit

Permalink
Remove Junit 4 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
yuokada committed Mar 14, 2024
1 parent 69031df commit 78cc932
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<jackson-bind.version>2.14.2</jackson-bind.version>

<okhttp.version>3.14.9</okhttp.version>
<hamcrest.version>2.2</hamcrest.version>

<surefire.version>3.2.2</surefire.version>
<javadoc-plugin.version>3.6.2</javadoc-plugin.version>
Expand Down Expand Up @@ -193,12 +194,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand All @@ -209,11 +204,6 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
Expand Down Expand Up @@ -255,13 +245,13 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>2.2</version>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>2.2</version>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 78cc932

Please sign in to comment.