Skip to content

Commit

Permalink
upgrade from junit4 to junit5
Browse files Browse the repository at this point in the history
upgrade from junit4 to junit5
  • Loading branch information
ashitsalesforce committed Dec 31, 2024
1 parent ae85744 commit f04ab12
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
<test.redirect>false</test.redirect>
<test.testfiles.directory>${project.build.testOutputDirectory}/testfiles</test.testfiles.directory>
<skip-unit-tests>false</skip-unit-tests>
<junit.version>5.11.4</junit.version>
<junit.platform.version>1.11.4</junit.platform.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -130,13 +132,31 @@
<version>2.3.232</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-vintage-engine -->
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-launcher -->
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit.platform.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-runner -->
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>${junit.platform.version}</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
<groupId>org.springframework</groupId>
Expand Down

0 comments on commit f04ab12

Please sign in to comment.