Forum Discussion
SmartBear_Suppo
Alumni
11 years agoHi,
One thing you need to change is the SoapUI Pro version specified, it should be 5.1.2 i.e <version>5.1.2</version>. You may need to add the following dependencies under the <plugin> element for version 5.1.2 to your pom file.
<dependencies>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.9-RC1</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.10-FINAL</version>
<exclusions>
<exclusion>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
As for the error you are getting it looks like there is an issue accessing this project file D:\MavenProject\NAMI_S2S_REST_API_Credit_Card-soapui-project.xml. Can you copy the project file to C:\ and see if it is accessible from there when ran in maven?
Regards,
Marcus
SmartBear Support
One thing you need to change is the SoapUI Pro version specified, it should be 5.1.2 i.e <version>5.1.2</version>. You may need to add the following dependencies under the <plugin> element for version 5.1.2 to your pom file.
<dependencies>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.9-RC1</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.10-FINAL</version>
<exclusions>
<exclusion>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
As for the error you are getting it looks like there is an issue accessing this project file D:\MavenProject\NAMI_S2S_REST_API_Credit_Card-soapui-project.xml. Can you copy the project file to C:\ and see if it is accessible from there when ran in maven?
Regards,
Marcus
SmartBear Support