Slavek
12 years agoNew Contributor
maven-soapui-pro-plugin duplicate results in jenkins
Hi, I have problem that when I use maven-soapui-pro-plugin and run my test there are in last results duplicated results see attached picture. Is it bug, or can anybody help me with this dupicity?
POM file with maven-soapui-plugin:
POM file with maven-soapui-pro-plugin:
POM file with maven-soapui-plugin:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>automated-tests</groupId>
<artifactId>jenkins-smoke-test</artifactId>
<version>4.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>jenkins-smoke-test</name>
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>4.5.1</version>
<configuration>
<projectFile>${basedir}/jenkins-test-soapui-project.xml</projectFile>
<testSuite>jenkins1</testSuite>
<outputFolder>${basedir}/target/surefire-reports</outputFolder>
<junitReport>true</junitReport>
<exportwAll>false</exportwAll>
<printReport>false</printReport>
<testFailIgnore>false</testFailIgnore>
</configuration>
<executions>
<execution>
<phase>process-test-classes</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>eviwarePluginRepository</id>
<url>http://www.eviware.com/repository/maven2/</url>
</pluginRepository>
</pluginRepositories>
</project>
POM file with maven-soapui-pro-plugin:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>automated-tests</groupId>
<artifactId>jenkins-smoke-test</artifactId>
<version>4.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>jenkins-smoke-test</name>
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-pro-plugin</artifactId>
<version>4.5.1</version>
<configuration>
<projectFile>${basedir}/jenkins-test-soapui-project.xml</projectFile>
<testSuite>jenkins1</testSuite>
<outputFolder>${basedir}/target/surefire-reports</outputFolder>
<junitReport>true</junitReport>
<exportwAll>false</exportwAll>
<printReport>false</printReport>
<testFailIgnore>false</testFailIgnore>
</configuration>
<executions>
<execution>
<phase>process-test-classes</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>eviwarePluginRepository</id>
<url>http://www.eviware.com/repository/maven2/</url>
</pluginRepository>
</pluginRepositories>
</project>