Skip to content

Commit

Permalink
Fix cucumber tests not executing due to junit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitjnn committed Apr 13, 2023
1 parent 3755349 commit 9891050
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.4.0</version>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -401,7 +401,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<version>2.22.0</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
Expand All @@ -410,7 +410,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.0.0</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>3.0.0</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>${TEST_RUNNER}</include>
Expand Down

0 comments on commit 9891050

Please sign in to comment.