Forum Discussion
Dheepha
13 years agoContributor
Hello all,
I'm also facing a problem in maven plugin for soapUi 4.0 version.
I'm trying to create a execution report for test cases using maven.
And part of my pom.xml looks like:
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>4.0</version>
<executions>
<execution>
<phase>generate-test-sources</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<projectFile>xxx-soapui-project.xml</projectFile>
<endpoint>url</endpoint>
<junitReport>true</junitReport>
<testSuite>${soapui.testsuite}</testSuite>
<testCase>${soapui.testcase}</testCase>
<outputFolder>${basedir}/report/soapui</outputFolder>
<printReport>true</printReport>
<testFailIgnore>true</testFailIgnore>
</configuration>
<dependencies>
<-- placed all the dependencies-->
</dependencies>
</plugin>
</plugins>
</build>
I have placed the maven-soapui-plugin-4.0.0.jar file in the maven lib folder.
Upon executing i'm getting the following error:
[ERROR] Plugin eviware:maven-soapui-plugin:4.0 or one of its dependencies could
not be resolved: Failed to read artifact descriptor for eviware:maven-soapui-plugin:jar:4.0: Failure to find eviware:maven-soapui-plugin:pom:4.0 in URL(displayed URl is company's central repository where all the maven artifacts has kept)- was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR]
Could anyone help me on this?
I'm also facing a problem in maven plugin for soapUi 4.0 version.
I'm trying to create a execution report for test cases using maven.
And part of my pom.xml looks like:
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>4.0</version>
<executions>
<execution>
<phase>generate-test-sources</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<projectFile>xxx-soapui-project.xml</projectFile>
<endpoint>url</endpoint>
<junitReport>true</junitReport>
<testSuite>${soapui.testsuite}</testSuite>
<testCase>${soapui.testcase}</testCase>
<outputFolder>${basedir}/report/soapui</outputFolder>
<printReport>true</printReport>
<testFailIgnore>true</testFailIgnore>
</configuration>
<dependencies>
<-- placed all the dependencies-->
</dependencies>
</plugin>
</plugins>
</build>
I have placed the maven-soapui-plugin-4.0.0.jar file in the maven lib folder.
Upon executing i'm getting the following error:
[ERROR] Plugin eviware:maven-soapui-plugin:4.0 or one of its dependencies could
not be resolved: Failed to read artifact descriptor for eviware:maven-soapui-plugin:jar:4.0: Failure to find eviware:maven-soapui-plugin:pom:4.0 in URL(displayed URl is company's central repository where all the maven artifacts has kept)- was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR]
Could anyone help me on this?