Top "Maven-failsafe-plugin" questions

The Maven Failsafe Plugin is used to run integration tests with Maven build tools.

Running a JUnit4 Test Suite in Maven using maven-failsafe-plugin

I've got a JUnit 4 test suite that contains a number of test classes in the order they need to be …

maven junit4 maven-failsafe-plugin
Maven does not run integration tests using failsafe-plugin

I know this question is asked more than once. But I cannot make maven run my integration tests using failsafe-plugin. …

java maven maven-failsafe-plugin integration-testing
maven-failsafe-plugin Failures and BUILD SUCCESS?

I want to use maven-failsafe-plugin to run some integration tests. If any test fails, I want Maven to fail the …

maven maven-plugin maven-failsafe-plugin
Maven Failsafe Plugin: how to use the pre- and post-integration-test phases

It is not completely clear to me how to best use the Maven Failsafe plugin for integration tests. My use …

java maven integration-testing maven-failsafe-plugin
Benefits of Maven FailSafe Plugin

I read Maven Failsafe plugin is designed specifically to run integration tests. Currently I'm working on a multi-module project and …

maven integration-testing testng maven-surefire-plugin maven-failsafe-plugin
Getting "Expecting a stackmap frame at branch target" when running Maven integration testing

I’m using Maven 3.2.3 with this version of Java davea$ echo $JAVA_HOME /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home …

java-8 verifyerror maven-failsafe-plugin maven-compiler-plugin
In Maven is it possible to keep integration tests in a separate folder from unit tests?

On the Maven and Integration Testing page it says: The Future Rumor has it that a future version of Maven …

maven integration-testing maven-failsafe-plugin
Failsafe html reports in Jenkins

I have some integration tests (with Selenium) which are run with failsafe maven plugin. Failsafe generates XML reports files only. 1) …

html maven selenium jenkins maven-failsafe-plugin
How do I detect my test is running on a Jenkins environment?

I have a JUnit test using Assumption to skip the test if the developer's computer doesn't have the pre-requisite software …

java maven jenkins junit maven-failsafe-plugin
How do I run JUnit 5 integration tests with the Maven Failsafe plugin?

The Maven Failsafe plugin won't find my JUnit 5 integration tests when I'm running the command mvn clean failsafe:integration-test, although …

java maven maven-failsafe-plugin junit5