This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
49 lines (43 loc) · 1.68 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
<?xml version="1.0"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.2</version>
</parent>
<artifactId>config</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>config</name>
<description>Cucumber Config</description>
<url>https://github.com/cucumber/config-java</url>
<properties>
<project.Automatic-Module-Name>io.cucumber.config</project.Automatic-Module-Name>
<jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
</properties>
<scm>
<connection>scm:git:git://github.com/cucumber/config-java.git</connection>
<developerConnection>scm:git:[email protected]:cucumber/config-java.git</developerConnection>
<url>git://github.com/cucumber/config-java.git</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.28</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>