forked from matteosusca/po-test-json-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
148 lines (148 loc) · 5.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?xml version="1.0" encoding="UTF-8" ?>
<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>it.iubar.pom</groupId>
<artifactId>iubar-pom-next</artifactId>
<version>0.0.1</version>
</parent>
<groupId>it.iubar</groupId>
<artifactId>json-validator</artifactId>
<version>1.5.0</version>
<name>Iubar Json Validator</name>
<description>A json validator</description>
<properties>
<jdk.source.version>11</jdk.source.version>
<jdk.target.version>${jdk.source.version}</jdk.target.version>
<maven-assembly-mainclass>it.iubar.json.CliJsonValidator</maven-assembly-mainclass>
<jersey.client.version>3.0.12</jersey.client.version> <!-- Attention, 3.0.12 is the last version supporting java 1.8 --> <!-- https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client -->
<justify.version>3.1.0</justify.version> <!-- It's a dead project :( https://github.com/leadpony/justify -->
<networknt.version>1.5.3</networknt.version> <!-- https://mvnrepository.com/artifact/com.networknt/json-schema-validator -->
<everit.version>1.14.4</everit.version> <!-- https://mvnrepository.com/artifact/com.github.erosb/everit-json-schema -->
<jsonskema.version>0.18.0</jsonskema.version> <!-- https://github.com/erosb/json-sKema -->
<slf4j.version>2.0.16</slf4j.version>
</properties>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<!-- Plugins managed by the parent -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Dependencies managed by the parent -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<!-- / -->
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.9.0</version>
</dependency>
<!-- begin everit -->
<!-- https://github.com/everit-org/json-schema -->
<dependency>
<groupId>com.github.everit-org.json-schema</groupId>
<artifactId>org.everit.json.schema</artifactId>
<version>${everit.version}</version>
</dependency>
<!-- / -->
<!-- begin json-sKema https://github.com/erosb/json-sKema -->
<dependency>
<groupId>com.github.erosb</groupId>
<artifactId>json-sKema</artifactId>
<version>${jsonskema.version}</version>
</dependency>
<!-- / -->
<!-- begin justify https://github.com/leadpony/justify -->
<dependency>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify</artifactId>
<version>${justify.version}</version>
</dependency>
<!-- JSON-P Default Provider (JSR-353) -->
<!-- https://mvnrepository.com/artifact/jakarta.json/jakarta.json-api -->
<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<version>2.1.3</version>
</dependency>
<!-- Eclipse Parsson is an implementation of Jakarta JSON Processing specification -->
<!-- https://mvnrepository.com/artifact/org.eclipse.parsson/parsson -->
<dependency>
<groupId>org.eclipse.parsson</groupId>
<artifactId>parsson</artifactId>
<version>1.1.7</version>
</dependency>
<!-- / -->
<!-- begin com.networknt.json-schema-validator -->
<!-- https://github.com/networknt/json-schema-validator -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>${networknt.version}</version>
</dependency>
<!-- / -->
<!-- begin jersey -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey.client.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>${jersey.client.version}</version>
</dependency>
<!-- / -->
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.4.1</version>
</dependency>
</dependencies>
<repositories>
<!-- Easy to use package repository for Git https://jitpack.io/#maven -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
</project>