Skip to content

Commit 8295e4f

Browse files
committed
Upgrade jackson, resteasy and pme versions
...solves CNFException
1 parent 7a1d7fe commit 8295e4f

File tree

1 file changed

+13
-22
lines changed

1 file changed

+13
-22
lines changed

pom.xml

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,16 @@
2626
<maven.compiler.target>1.8</maven.compiler.target>
2727
<maven.compiler.source>1.8</maven.compiler.source>
2828

29-
<pme.version>3.7.1</pme.version>
29+
<pme.version>3.8.3</pme.version>
3030
<maven.version>3.5.4</maven.version>
3131
<atlas.version>0.17.2</atlas.version>
3232
<jgit.version>5.4.3.201909031940-r</jgit.version>
3333
<jboss.logging.version>3.4.1.Final</jboss.logging.version>
3434
<maven.resolver.version>1.0.3</maven.resolver.version>
3535
<commons.cli.version>1.4</commons.cli.version>
36-
<jackson.version>2.9.10.7</jackson.version>
36+
<jackson.version>2.10.5</jackson.version>
3737
<aether.version>1.1.0</aether.version>
38+
<resteasy.vetsion>4.6.0.Final</resteasy.vetsion>
3839
</properties>
3940

4041
<modules>
@@ -95,11 +96,10 @@
9596
<version>${commons.cli.version}</version>
9697
</dependency>
9798

98-
<!-- JSON -->
9999
<dependency>
100-
<groupId>com.fasterxml.jackson.core</groupId>
101-
<artifactId>jackson-databind</artifactId>
102-
<version>${jackson.version}</version>
100+
<groupId>org.apache.commons</groupId>
101+
<artifactId>commons-lang3</artifactId>
102+
<version>3.9</version>
103103
</dependency>
104104

105105
<!-- Maven -->
@@ -236,38 +236,29 @@
236236
<dependency>
237237
<groupId>org.jboss.resteasy</groupId>
238238
<artifactId>resteasy-client</artifactId>
239-
<version>4.5.3.Final</version>
239+
<version>${resteasy.vetsion}</version>
240240
</dependency>
241241
<dependency>
242242
<groupId>org.jboss.resteasy</groupId>
243243
<artifactId>resteasy-client-microprofile</artifactId>
244-
<version>4.5.3.Final</version>
244+
<version>${resteasy.vetsion}</version>
245245
</dependency>
246246
<dependency>
247247
<groupId>org.jboss.resteasy</groupId>
248248
<artifactId>resteasy-jackson2-provider</artifactId>
249-
<version>4.5.3.Final</version>
249+
<version>${resteasy.vetsion}</version>
250250
</dependency>
251+
252+
<!-- Jackson -->
251253
<dependency>
252254
<groupId>com.fasterxml.jackson.core</groupId>
253255
<artifactId>jackson-databind</artifactId>
254-
<version>2.9.10.7</version>
256+
<version>${jackson.version}</version>
255257
</dependency>
256258
<dependency>
257259
<groupId>com.fasterxml.jackson.datatype</groupId>
258260
<artifactId>jackson-datatype-jsr310</artifactId>
259-
<version>2.10.1</version>
260-
</dependency>
261-
262-
<dependency>
263-
<groupId>commons-cli</groupId>
264-
<artifactId>commons-cli</artifactId>
265-
<version>1.4</version>
266-
</dependency>
267-
<dependency>
268-
<groupId>org.apache.commons</groupId>
269-
<artifactId>commons-lang3</artifactId>
270-
<version>3.9</version>
261+
<version>${jackson.version}</version>
271262
</dependency>
272263

273264
<dependency>

0 commit comments

Comments
 (0)