Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>yourGroupId</groupId>
  8.     <artifactId>toyrArtifactId</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <dependencies>
  12.         <dependency>
  13.             <groupId>org.seleniumhq.selenium</groupId>
  14.             <artifactId>selenium-java</artifactId>
  15.             <version>2.41.0</version>
  16.         </dependency>
  17.         <dependency>
  18.             <groupId>org.testng</groupId>
  19.             <artifactId>testng</artifactId>
  20.             <version>6.1.1</version>
  21.             <scope>test</scope>
  22.         </dependency>
  23.     </dependencies>
  24.  
  25.     <build>
  26.         <pluginManagement>
  27.             <plugins>
  28.                 <plugin>
  29.                     <groupId>org.apache.maven.plugins</groupId>
  30.                     <artifactId>maven-surefire-plugin</artifactId>
  31.                     <version>2.16</version>
  32.                     <configuration>
  33.                         <suiteXmlFiles>
  34.                             <suiteXmlFile>testng.xml</suiteXmlFile>
  35.                         </suiteXmlFiles>
  36.                     </configuration>
  37.                 </plugin>
  38.  
  39.                 <plugin>
  40.                     <inherited>true</inherited>
  41.                     <groupId>org.apache.maven.plugins</groupId>
  42.                     <artifactId>maven-compiler-plugin</artifactId>
  43.                 </plugin>
  44.  
  45.             </plugins>
  46.         </pluginManagement>
  47.     </build>
  48. </project>