-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
62 lines (55 loc) · 2.27 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-parent</artifactId>
<version>2.1.1</version>
</parent>
<artifactId>zephyr-xml-formatter</artifactId>
<!--
The MAJOR.MINOR.PATCH version should be the same as cucumber.version below.
Use a 4th digit to track additional patch versions for this plugin.
-->
<version>6.11.0.2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Zephyr XML formatter for Cucumber</name>
<properties>
<project.Automatic-Module-Name>io.cucumber.zephyr</project.Automatic-Module-Name>
<java.version>1.8</java.version>
<junit.version>4.13.1</junit.version>
<cucumber.version>6.11.0</cucumber.version>
</properties>
<scm>
<connection>scm:git:git://github.com/SmartBear/cucumber-jvm-zephyr-xml.git</connection>
<developerConnection>scm:git:[email protected]:SmartBear/cucumber-jvm-zephyr-xml.git</developerConnection>
<url>git://github.com/SmartBear/cucumber-jvm-zephyr-xml.git</url>
<tag>v6.11.0.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-core</artifactId>
<version>${cucumber.version}</version>
<!-- Allow users to use any 4.2.X version of Cucumber -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-junit</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>