I have included the Jenkins pom.xml below. I don't think there is anything that would interfere, but please let me know your opinion.
I'm sorry, I am unfamiliar with using the testRunner, I'm assuming in Jenkins, instead of context. If you could point me to documentation or show me how I can do that I would appreciate it.
<?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>
<packaging>pom</packaging>
<groupId>com.nuskin.qa.services.tests</groupId>
<artifactId>test-suite</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>QA Account Service Tests</name>
<pluginRepositories>
<pluginRepository>
<id>smartbear-sweden-plugin-repository</id>
<url>http://www.soapui.org/repository/maven2/</url>
</pluginRepository>
<pluginRepository>
<id>eviwarePluginRepository</id>
<url>http://mvnrepository.com/artifact/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>com.smartbear</groupId>
<artifactId>ready-api-maven-plugin</artifactId>
<version>1.3.1</version>
<configuration>
<projectFile>${basedir}/Account-Service-soapui-project.xml</projectFile>
<outputFolder>${basedir}/target/soapui-reports/</outputFolder>
<junitReport>true</junitReport>
<endpoint>https://test.nuskin.com</endpoint>
<projectProperties>
</projectProperties>
<skip>${skipITs}</skip>
</configuration>
<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>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>