Skip to content

Commit cffed84

Browse files
committed
Create pom.xml
1 parent 22a02c7 commit cffed84

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

pom.xml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.example</groupId>
8+
<artifactId>boilerplate-api-java-httpclient</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>11</maven.compiler.source>
13+
<maven.compiler.target>11</maven.compiler.target>
14+
<junit.version>4.13.2</junit.version>
15+
<cucumber.version>6.11.0</cucumber.version>
16+
<json.version>20210307</json.version>
17+
<json.schema.version>1.5.1</json.schema.version>
18+
</properties>
19+
20+
<dependencies>
21+
<dependency>
22+
<groupId>junit</groupId>
23+
<artifactId>junit</artifactId>
24+
<version>${junit.version}</version>
25+
<scope>test</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>io.cucumber</groupId>
29+
<artifactId>cucumber-java</artifactId>
30+
<version>${cucumber.version}</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>io.cucumber</groupId>
34+
<artifactId>cucumber-junit</artifactId>
35+
<version>${cucumber.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.json</groupId>
39+
<artifactId>json</artifactId>
40+
<version>${json.version}</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.everit.json</groupId>
44+
<artifactId>org.everit.json.schema</artifactId>
45+
<version>${json.schema.version}</version>
46+
</dependency>
47+
</dependencies>
48+
49+
</project>

0 commit comments

Comments
 (0)