Skip to content

Commit

Permalink
chore: add junit-jupiter dependency in order to run JUnit 5 test …
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed May 18, 2024
1 parent bec3f45 commit 6906bc5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,16 @@
<artifactId>kotest-property-jvm</artifactId>
<scope>test</scope>
</dependency>
<!--
In order to run JUnit 5 test cases in IntelliJ IDEA, need include below dependencies. more info see:
https://junit.org/junit5/docs/current/user-guide/#running-tests-ide-intellij-idea
https://github.com/junit-team/junit5-samples/blob/main/junit5-jupiter-starter-maven/pom.xml#L29
-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<dependencyManagement>
Expand Down

0 comments on commit 6906bc5

Please sign in to comment.