document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.  
  5.     <groupId>TesterInYou</groupId>
  6.     <artifactId>SampleMavenProject</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.     <packaging>jar</packaging>
  9.  
  10.     <name>SampleMavenProject</name>
  11.     <url>http://maven.apache.org</url>
  12.  
  13.     <properties>
  14.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.     </properties>
  16.     <build>
  17.         <plugins>
  18.             <plugin>
  19.                 <groupId>org.apache.maven.plugins</groupId>
  20.                 <artifactId>maven-compiler-plugin</artifactId>
  21.                 <version>3.3</version>
  22.                 <configuration>
  23.                     <!-- put your configurations here -->
  24.                 </configuration>
  25.             </plugin>
  26.             <plugin>
  27.                 <groupId>org.apache.maven.plugins</groupId>
  28.                 <artifactId>maven-surefire-plugin</artifactId>
  29.                 <version>2.18.1</version>
  30.                 <configuration>
  31.                     <suiteXmlFiles>
  32.                         <suiteXmlFile>testng.xml</suiteXmlFile>
  33.                     </suiteXmlFiles>
  34.                 </configuration>
  35.             </plugin>
  36.         </plugins>
  37.     </build>
  38.    
  39.     <dependencies>
  40.  
  41.         <dependency>
  42.             <groupId>junit</groupId>
  43.             <artifactId>junit</artifactId>
  44.             <version>3.8.1</version>
  45.             <scope>test</scope>
  46.         </dependency>
  47.         <!-- testNG dependency -->
  48.         <dependency>
  49.             <groupId>org.testng</groupId>
  50.             <artifactId>testng</artifactId>
  51.             <version>6.9.6</version>
  52.         </dependency>
  53.  
  54.         <dependency>
  55.             <groupId>org.seleniumhq.selenium</groupId>
  56.             <artifactId>selenium-java</artifactId>
  57.             <version>2.47.1</version>
  58.         </dependency>
  59.  
  60.  
  61.         <dependency>
  62.             <groupId>org.seleniumhq.selenium</groupId>
  63.             <artifactId>selenium-server</artifactId>
  64.             <version>2.47.1</version>
  65.         </dependency>
  66.     </dependencies>
  67. </project>
');