Solved
Forum Discussion
Debz
9 years agoContributor
Hi,
My initial thought is to specify an output directory in the pom file,
<configuration>
<outputDirectory>${project.basedir}/reports</outputDirectory>
<reportsDirectories>${project.basedir}/reports</reportsDirectories>
</configuration>but when I checked, Jeshtha (from SmartBear) replied to a simiar post here in the forum. Here's the suggested fix:
<configuration>
<soapuiProperties>
<property>
<name>soapui.logroot</name>
<value>${project.build.directory}/soapui-logs/</value>
</property>
</soapuiProperties>
</configuration>and according to redfish4ktc2 it used to be a bug on earlier versions. You may want to see this post: Configuring Log file Location for SoapUi-Maven project
Regards,
Debz