<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.visualiq.selfservice.test.soapui</groupId>
  <artifactId>SelfServiceSoapUITest</artifactId>
  <packaging>jar</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>soapuitest</name>
  <url>http://maven.apache.org</url>

	<dependencies>
		<dependency>
		  <groupId>junit</groupId>
		  <artifactId>junit</artifactId>
		  <version>3.8.1</version>
		  <scope>test</scope>
		</dependency>
	</dependencies>

	<pluginRepositories>
		<pluginRepository>
		  <id>eviwarePluginRepository</id>
		  <url>http://www.eviware.com/repository/maven2/</url>
		</pluginRepository>
		<pluginRepository>
			<id>soapui-pro-maven-plugin</id>
			<url>http://smartbearsoftware.com/repository/maven2</url>
		</pluginRepository>
		<pluginRepository>
			<id>smartbear-sweden-plugin-repository</id>
			<url>http://www.soapui.org/repository/maven2/</url>
		</pluginRepository>
	</pluginRepositories>

	<build>
		<plugins>
			<plugin>
				<groupId>com.smartbear.soapui</groupId>
				<artifactId>soapui-pro-maven-plugin</artifactId>
				<version>5.1.2</version>
				<dependencies>
					<dependency>
						<groupId>mysql</groupId>
						<artifactId>mysql-connector-java</artifactId>
						<version>5.1.6</version>
					</dependency>
					<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>
				<configuration>
					<junitReport>true</junitReport>
					<exportAll>true</exportAll>
					<outputFolder>target/surefire-reports</outputFolder>
					<printReport>true</printReport>
					<testFailIgnore>true</testFailIgnore>
				</configuration>			
				<executions>
					<execution>
						<id>selfService_v1_clients-soapui-project</id>
						<phase>integration-test</phase>
						<goals>
							<goal>test</goal>
						</goals>
						<configuration>
							<projectFile>${project.basedir}/Projects/Clients/VisualIQProjBRK.xml</projectFile>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<version>2.19.1</version>
			</plugin>            
		</plugins>

		<pluginManagement>
		  <plugins>
			<plugin>
			  <groupId>org.apache.maven.plugins</groupId>
			  <artifactId>maven-surefire-plugin</artifactId>
			  <version>2.16</version>
			</plugin>
		  </plugins>
		</pluginManagement>

	</build>

	<reporting>
		<plugins>
		  <plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-surefire-report-plugin</artifactId>
			<version>2.19.1</version>
		  </plugin>
		</plugins>
	  </reporting>
	  
</project>