Skip to content

Commit

Permalink
Fix Maven CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
purejava committed Jan 18, 2024
1 parent 9e09ad4 commit 5911588
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,25 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<junit.version>4.13.2</junit.version>
<junit.version>5.10.1</junit.version>
</properties>

<dependencies>
<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</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 5911588

Please sign in to comment.