lukaszm
13 years agoOccasional Contributor
JUnit reports with Maven SoapUI plugin are not generated
Hello,
I have a problem with getting JUnit report (.xml) file to be generated for SoapUI tests. Text log files are generated (soapui.log, soapui-error.log etc.). I use free version of SoapUI. My POM.xml file look like this:
I execute this via Jenkins with
Please, any help with this?
I have a problem with getting JUnit report (.xml) file to be generated for SoapUI tests. Text log files are generated (soapui.log, soapui-error.log etc.). I use free version of SoapUI. My POM.xml file look like this:
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>4.5.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>MyProject-soapui-project.xml</projectFile>
<testSuite>My-Test-Suite</testSuite>
<junitReport>true</junitReport>
<printReport>true</printReport>
<exportAll>true</exportAll>
<outputFolder>.</outputFolder>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
I execute this via Jenkins with
eviware:maven-soapui-plugin:testGoals and Options.
Please, any help with this?