Parallel Execution using Failsafe plugin
Running Cucumber Feature using Failsafe plugin in place of Maven Surefireplugin. Maven Project Structure. D:. ├───.settings └───src ├───main │ ├───java │ │ └───parallelExecution │ └───resources └───test ├───java │ ├───cucumberRunner │ └───StepDefination └───resources └───parallel We need to add the Failsafe plugin in POM.xml Rename the runner class to RunCucumberIT <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.21.0</version> ...