Forum Discussion

CXin's avatar
CXin
Frequent Contributor
14 years ago

maven build hang

I am trying to run maven plugin for soapui pro.
The issue is that,
when I run mvn eviware:maven-soapui-pro-plugin:test, it will HANG on the step forever.

Downloading: http://repo1.maven.org/maven2/jasperrep ... -4.0.2.pom

Here is the pom I use:

<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.ebay.classifieds</groupId>
<artifactId>MavenTest</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>Maven 2 soapUI Sample</name>
<url>http://maven.apache.org</url>
<pluginRepositories>
<pluginRepository>
<id>eviwarePluginRepository</id>
<url>http://www.eviware.com/repository/maven2</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-pro-plugin</artifactId>
<version>4.0.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>MavenTest-soapui-project.xml</projectFile>
<projectFile>/Users/guchen/CAPI-SVN/API/MavenTest-api-soapui-project.xml</projectFile>

</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
No RepliesBe the first to reply