I have a problem soupui test cases runnnig with maven. Normally we created test data in the program with groovy script. Now, i want to run with external properties file. I have a file named properties.txt . When i running with command line i use this command "mvn clean test" . With my pom.xml i could not use my property values inside the project xml. Seems like i could not reach these values.
Here is my pom.xml:
`<configuration>
<projectFile>${basedir}/src/test/soapRegression_development.xml</projectFile>
<outputFolder>${basedir}/target/</outputFolder>
<junitReport>true</junitReport>
<printReport>false</printReport>
<soapuiProperties>
<property>
<name>soapui.logroot</name>
<value>${project.build.directory}/soapui-logs/</value>
</property>
<property>
<name>soapui.properties.soapRegression_development</name>
<value>${basedir}/properties.txt</value>
</property>
</soapuiProperties>
<!--projectProperties> <value>envName=${urlName}</value> </projectProperties -->
<endpoint>${endpoint}</endpoint>
</configuration>`