13 years ago
Maven problem - POM configuration not being applied
I am getting this error:
Even though I have set the project file in my POM.
If I rename my project file to that default name then it works. But I need to get around this so I can run multiple project files, and be able to set other properties.
Any ideas?
Thanks!
[ERROR] Failed to load soapUI project file [mui-integration-test-soapui-project.xml]
Even though I have set the project file in my POM.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.alstom.miso.mui</groupId>
<artifactId>mui-base-pom</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>mui-integration-test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Mui Integration Test (soap)</name>
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-pro-plugin</artifactId>
<version>4.5.1</version>
<dependencies>
</dependencies>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>MUI - General v1.6.xml</projectFile>
<projectProperties>
<value>message=Hello World!</value>
</projectProperties>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
If I rename my project file to that default name then it works. But I need to get around this so I can run multiple project files, and be able to set other properties.
Any ideas?
Thanks!