Skip to content

Commit

Permalink
[core] Introduce junit5 (#4725)
Browse files Browse the repository at this point in the history
* [core] Add support for junit 5

* [core] Fix wrong parent version

* [core] Set code level to java 11

* Set project code style to java 8
  • Loading branch information
bigscoop committed Aug 13, 2023
1 parent 84cd9bc commit 937607e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<version.fasterxml>2.14.1</version.fasterxml>
<version.github.mmazi>3.0</version.github.mmazi>
<version.resilience4j>1.7.0</version.resilience4j>
<version.junit>4.13.2</version.junit>
<version.junit>5.9.3</version.junit>
<version.lombok>1.18.26</version.lombok>
<version.knowm.xchart>3.8.2</version.knowm.xchart>
<version.qos.logback>1.4.5</version.qos.logback>
Expand Down Expand Up @@ -387,11 +387,12 @@

<!-- JUnit for testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
Expand Down

0 comments on commit 937607e

Please sign in to comment.