I just pulled out surefire plugin and Maven SoapUI maven plugin from my pom
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-maven-plugin</artifactId>
<version>4.6.1</version>
<configuration>
<projectFile>src/test/resources/XXXX.xml</projectFile>
<testSuite>XXXTestSuite</testSuite>
</configuration>
<executions>
<execution>
<id>soapui-test</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.15</version>
</plugin>