Pritish_Panda
9 years agoContributor
How to set soapui project property via pom from an external property file .
Hi,
I am trying to set project property via maven pom file from an external file.
I have tried with both below plugins
<soapuiProperties>
<property>
<name>soapui.properties.SoapUI_Test_with_Maven</name>
<value>${pom.basedir}\Environment\NewProjectProp.properties</value>
</property>
</soapuiProperties>
or
<soapuiProperties>
<projectProperty>projName=SoapUI_Test_with_Maven</projectProperty>
<property>
<name>soapui.properties.projName</name>
<value>E:\SoapUI_Work\Latest_Git_Pull\SoapUI_Test_with_maven\Environment\NewProjectProp.properties</value>
</property>
</soapuiProperties>
but it's not working for me any solution please .
I have attached the Property file which i am trying to upload .
Thanks