<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefireArgLine}</argLine>
<!--testng.xml -->
<suiteXmlFiles>
<suiteXmlFile>target/test-classes/testcase/testng.xml</suiteXmlFile>
</suiteXmlFiles>
<testFailureIgnore>true</testFailureIgnore>
<!-- <debugForkedProcess>true</debugForkedProcess> -->
<properties>
<property>
<name>usedefaultlisteners</name>
<value>false</value>
</property>
</properties>
<!-- target -->
<workingDirectory>target/</workingDirectory>
</configuration>
</plugin>