Running with command line mvn with external property file
Hi,
We have a problem soupui test cases runnnig with maven. Normally we created test data in the program with groovy script. Now, we 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/
<outputFolder>${basedir}/
<junitReport>true</
<printReport>false</
<soapuiProperties>
<property>
<name>soapui.logroot</name>
<value>${project.build.
</property>
<property>
<name>soapui.properties.
<value>${basedir}/properties.
</property>
</soapuiProperties>
<!--projectProperties> <value>envName=${urlName}</
<endpoint>${endpoint}</
</configuration>