Advertisement
Guest User

Untitled

a guest
Jun 5th, 2014
1,066
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.14 KB | None | 0 0
  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/maven-v4_0_0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>groupId</groupId>
  5.     <artifactId>SmokeTest</artifactId>
  6.     <packaging>jar</packaging>
  7.     <version>1.0-SNAPSHOT</version>
  8.     <properties>
  9.         <cucumber.version>1.1.7</cucumber.version>
  10.         <powermock.version>1.5.5</powermock.version>
  11.     </properties>
  12.     <name>SmokeTest</name>
  13.     <url>http://maven.apache.org</url>
  14.     <build>
  15.         <plugins>
  16.             <plugin>
  17.                 <artifactId>maven-compiler-plugin</artifactId>
  18.                 <configuration>
  19.                     <source>1.7</source>
  20.                     <target>1.7</target>
  21.                 </configuration>
  22.             </plugin>
  23.         </plugins>
  24.     </build>
  25.     <dependencies>
  26.         <dependency>
  27.             <groupId>junit</groupId>
  28.             <artifactId>junit</artifactId>
  29.             <version>4.11</version>
  30.             <scope>test</scope>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>org.seleniumhq.selenium</groupId>
  34.             <artifactId>selenium-java</artifactId>
  35.             <version>2.41.0</version>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>info.cukes</groupId>
  39.             <artifactId>cucumber-core</artifactId>
  40.             <version>${cucumber.version}</version>
  41.         </dependency>
  42.         <dependency>
  43.             <groupId>info.cukes</groupId>
  44.             <artifactId>cucumber-java</artifactId>
  45.             <version>${cucumber.version}</version>
  46.         </dependency>
  47.         <dependency>
  48.             <groupId>info.cukes</groupId>
  49.             <artifactId>cucumber-junit</artifactId>
  50.             <version>${cucumber.version}</version>
  51.         </dependency>
  52.         <dependency>
  53.             <groupId>ch.qos.logback</groupId>
  54.             <artifactId>logback-classic</artifactId>
  55.             <version>1.1.1</version>
  56.         </dependency>
  57.         <dependency>
  58.             <groupId>commons-lang</groupId>
  59.             <artifactId>commons-lang</artifactId>
  60.             <version>2.6</version>
  61.         </dependency>
  62.     </dependencies>
  63. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement