14 years ago
Getting soapUI reports into Jenkins
Hi,
I'm using soapUI (not Pro) in order to test my application's REST API.
I want to generate a Jenkins job that will collect soapUI's report and show it in a nice form.
I found out that I have to use maven-surefire-report-plugin in order to get nice reports.
Right now I can't manage to do so. Here is the contents of the plugin in my pom.xml:
And this is the content of maven-soapui-plugin:
Can someone find out what is wrong here?
Thanks,
Tommy
I'm using soapUI (not Pro) in order to test my application's REST API.
I want to generate a Jenkins job that will collect soapUI's report and show it in a nice form.
I found out that I have to use maven-surefire-report-plugin in order to get nice reports.
Right now I can't manage to do so. Here is the contents of the plugin in my pom.xml:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<outputDirectory>target</outputDirectory>
<reportsDirectories>
<reportsDirectories>target</reportsDirectories>
</reportsDirectories>
</configuration>
</plugin>
And this is the content of maven-soapui-plugin:
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>4.0.0</version>
<configuration>
<junitReport>true</junitReport>
<projectFile>RestAPIsTests.xml</projectFile>
<host>tlvd60204829a.dhcp.tlv.sap.corp:8080</host>
<outputFolder>target</outputFolder>
<testFailIgnore>true</testFailIgnore>
</configuration>
</plugin>
Can someone find out what is wrong here?
Thanks,
Tommy