Skip to content

Commit

Permalink
#113: replace junit:junit:4.13.2:test with org.junit.jupiter:junit-ju…
Browse files Browse the repository at this point in the history
…piter-*:5.10.2:test
  • Loading branch information
TheSnoozer committed Mar 19, 2024
1 parent 5be6130 commit 9120d25
Show file tree
Hide file tree
Showing 10 changed files with 268 additions and 252 deletions.
24 changes: 15 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
https://github.com/eclipse-jgit/jgit/issues/36
-->
<jgit.version>6.7.0.202309050840-r</jgit.version>
<junit.version>4.13.2</junit.version>
<junit.version>5.10.2</junit.version>
<mockito.version>5.11.0</mockito.version>
<assertj.version>3.25.3</assertj.version>
</properties>
Expand Down Expand Up @@ -253,8 +253,20 @@

<!-- Test stuff -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
Expand All @@ -277,12 +289,6 @@
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>pl.pragmatists</groupId>
<artifactId>JUnitParams</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<!-- slf4j is a dependency of jgit, this suppresses slf4j's warning during testing when we mock jgit stuff -->
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
Loading

0 comments on commit 9120d25

Please sign in to comment.