Full name:
org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M3:verify
Description:
Attributes:
Name | Type | Since | Description |
---|---|---|---|
<summaryFile> | File | - | The summary file to read integration test results from. Default value is: ${project.build.directory}/failsafe-reports/failsafe-summary.xml. |
Name | Type | Since | Description |
---|---|---|---|
<basedir> | File | - | The base directory of the project being tested. This can be
obtained in your unit test by System.getProperty("basedir"). Default value is: ${basedir}. |
<encoding> | String | - | Deprecated. since of 2.20.1 Default value is: ${project.reporting.outputEncoding}. User property is: encoding. |
<failIfNoTests> | Boolean | 2.4 | Set this to "true" to cause a failure if there are no tests to run. User property is: failIfNoTests. |
<reportsDirectory> | File | - | Base directory where all reports are written to. Default value is: ${project.build.directory}/failsafe-reports. |
<skip> | boolean | - | Set this to 'true' to bypass unit tests entirely. Its use is NOT
RECOMMENDED, especially if you enable it using the
"maven.test.skip" property, because maven.test.skip disables both
running the tests and compiling the tests. Consider using the
skipTests parameter instead. Default value is: false. User property is: maven.test.skip. |
<skipExec> | boolean | 2.3 | Deprecated. Use -DskipTests instead. User property is: maven.test.skip.exec. |
<skipITs> | boolean | 2.4.3-alpha-2 | Set this to 'true' to skip running integration tests, but still
compile them. Its use is NOT RECOMMENDED, but quite convenient on
occasion. User property is: skipITs. |
<skipTests> | boolean | 2.4 | Set this to 'true' to skip running tests, but still compile them.
Its use is NOT RECOMMENDED, but quite convenient on occasion. User property is: skipTests. |
<summaryFiles> | File[] | 2.6 | Additional summary files to read integration test results from. |
<testClassesDirectory> | File | - | The directory containing generated test classes of the project
being tested. This will be included at the beginning the test
classpath. Default value is: ${project.build.testOutputDirectory}. |
<testFailureIgnore> | boolean | - | Set this to true to ignore a failure during testing. Its use is NOT
RECOMMENDED, but quite convenient on occasion. Default value is: false. User property is: maven.test.failure.ignore. |