|
| 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>cucumber</groupId> |
| 6 | + <artifactId>cucumber</artifactId> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>cucumber</name> |
| 11 | + <url>http://maven.apache.org</url> |
| 12 | + |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>junit</groupId> |
| 20 | + <artifactId>junit</artifactId> |
| 21 | + <version>4.12</version> |
| 22 | + <scope>test</scope> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>info.cukes</groupId> |
| 26 | + <artifactId>cucumber-junit</artifactId> |
| 27 | + <version>1.2.5</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>info.cukes</groupId> |
| 31 | + <artifactId>cucumber-java</artifactId> |
| 32 | + <version>1.2.5</version> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>info.cukes</groupId> |
| 36 | + <artifactId>cucumber-core</artifactId> |
| 37 | + <version>1.2.5</version> |
| 38 | + </dependency> |
| 39 | + |
| 40 | + <dependency> |
| 41 | + <groupId>info.cukes</groupId> |
| 42 | + <artifactId>gherkin</artifactId> |
| 43 | + <version>2.12.2</version> |
| 44 | + <scope>provided</scope> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>info.cukes</groupId> |
| 48 | + <artifactId>cucumber-jvm</artifactId> |
| 49 | + <version>1.2.5</version> |
| 50 | + <type>pom</type> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>info.cukes</groupId> |
| 54 | + <artifactId>cucumber-jvm-deps</artifactId> |
| 55 | + <version>1.0.5</version> |
| 56 | + <scope>provided</scope> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>info.cukes</groupId> |
| 60 | + <artifactId>cucumber-picocontainer</artifactId> |
| 61 | + <version>1.2.5</version> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.testng</groupId> |
| 66 | + <artifactId>testng</artifactId> |
| 67 | + <version>6.13</version> |
| 68 | + <scope>test</scope> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>info.cukes</groupId> |
| 72 | + <artifactId>cucumber-testng</artifactId> |
| 73 | + <version>1.2.5</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>com.beust</groupId> |
| 77 | + <artifactId>jcommander</artifactId> |
| 78 | + <version>1.72</version> |
| 79 | + </dependency> |
| 80 | + </dependencies> |
| 81 | +</project> |
0 commit comments