<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.mycompany.app</groupId>
   <artifactId>my-app</artifactId>
   <version>1.0</version>
   
   <!--Add the SmartBear ReadyAPI plugin repository.--> 
   <!--Maven will download the plugin from the specified URL.-->
   <pluginRepositories>
      <pluginRepository>
         <id>SmartBearPluginRepository</id>
         <url>http://smartbearsoftware.com/repository/maven2</url>
      </pluginRepository>
   </pluginRepositories>

   <build>
      <plugins>
         <plugin>

            <!--Plugin groupID used to uniquely identify the project with the plugin.-->
            <groupId>com.smartbear</groupId>

            <!--Plugin artifactId used to find the plugin in the project.-->
            <artifactId>ready-api-maven-plugin</artifactId>
            <version>2.1.0</version>
			
            <!--Add a JDBC driver dependency if your tests use JDBC.-->
            <!--Maven imports and installs the driver automatically.-->
            <dependencies>
    	<dependency>
			   <groupId>org.seleniumhq.selenium</groupId>
			   <artifactId>selenium-server</artifactId>
			   <version>2.53.0</version>
  		</dependency>
		
		<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-ie-driver</artifactId>
    <version>3.4.0</version>
		</dependency>
		
		<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-chrome-driver</artifactId>
    <version>2.53.0</version>
		</dependency>
		
	    <dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.15</version>
		</dependency>
		
		
    <dependency>
    <groupId>com.relevantcodes</groupId>
    <artifactId>extentreports</artifactId>
    <version>2.40.2</version>
	</dependency>
	
		<dependency>
			    <groupId>org.testng</groupId>
			    <artifactId>testng</artifactId>
			    <version>6.9.9</version>
    	</dependency>
	
		
		</dependencies>
			
            <executions>
               <execution>

                  <!--Specifies the lifecycle phase to run ReadyAPI tests.-->
                  <!--We recommend using the test phase.-->
                  <phase>test</phase>
                  <goals>
                     <!--Do not change. Commands the Maven plugin to run a functional test.-->
                     <goal>test</goal>
                  </goals>

                  <configuration>

                     <!--Required. Specifies the path to the project to execute.-->
                     <projectFile>PIE-SERVICE-FOR-Response-fetch.xml</projectFile>

                     <!--Specifies the folder to store reports in.-->
                     <reports>${basedir}/target/surefire-reports</reports>


                  </configuration>
               </execution>
            </executions>
         </plugin>
		 
	
	
	
		  <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.5.1</version>
	                <configuration>
	                    <source>1.7</source>
	                    <target>1.7</target>
	                </configuration> 
           </plugin>   
	


		   <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.14.1</version>
	                <configuration>
	                
	                    <testFailureIgnore> true </testFailureIgnore>
	                    <suiteXmlFiles>

	                        <suiteXmlFile>testng.xml</suiteXmlFile>
	          
	
	                    </suiteXmlFiles>
	                        
	                 </configuration> 
           </plugin>

	

      </plugins>

   </build>

</project>