Skip to content

Commit b7d5ad2

Browse files
authored
Merge pull request #302 from UnionVMS/update-jackson-version
Updating jackson version
2 parents df5a34a + e913a3e commit b7d5ad2

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

unionvms-test/pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<properties>
1717
<docker.skip>${skipITs}</docker.skip>
1818
<docker.frontend.test.suite>UnionVMSTestCase</docker.frontend.test.suite>
19+
<jackson.version>2.10.1</jackson.version>
1920
</properties>
2021

2122
<dependencies>
@@ -67,6 +68,10 @@
6768
<groupId>org.projectlombok</groupId>
6869
<artifactId>lombok</artifactId>
6970
</exclusion>
71+
<exclusion>
72+
<groupId>com.fasterxml.jackson.core</groupId>
73+
<artifactId>jackson-core</artifactId>
74+
</exclusion>
7075
</exclusions>
7176
</dependency>
7277
<dependency>
@@ -102,22 +107,22 @@
102107
<dependency>
103108
<groupId>com.fasterxml.jackson.core</groupId>
104109
<artifactId>jackson-databind</artifactId>
105-
<version>2.9.10</version>
110+
<version>${jackson.version}</version>
106111
</dependency>
107112
<dependency>
108113
<groupId>com.fasterxml.jackson.module</groupId>
109114
<artifactId>jackson-module-jaxb-annotations</artifactId>
110-
<version>2.9.10</version>
115+
<version>${jackson.version}</version>
111116
</dependency>
112117
<dependency>
113118
<groupId>com.fasterxml.jackson.core</groupId>
114119
<artifactId>jackson-annotations</artifactId>
115-
<version>2.10.1</version>
120+
<version>${jackson.version}</version>
116121
</dependency>
117122
<dependency>
118123
<groupId>com.fasterxml.jackson.datatype</groupId>
119124
<artifactId>jackson-datatype-jsr310</artifactId>
120-
<version>2.9.10</version>
125+
<version>${jackson.version}</version>
121126
</dependency>
122127
<dependency>
123128
<groupId>org.jboss.resteasy</groupId>

0 commit comments

Comments
 (0)