Skip to content

Commit 13aed9a

Browse files
committed
adding jackson-databind to api lib pom
Signed-off-by: Min Jin <[email protected]>
1 parent df30516 commit 13aed9a

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

kubernetes/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,10 @@
180180
<groupId>jakarta.ws.rs</groupId>
181181
<artifactId>jakarta.ws.rs-api</artifactId>
182182
</dependency>
183+
<dependency>
184+
<groupId>com.fasterxml.jackson.core</groupId>
185+
<artifactId>jackson-databind</artifactId>
186+
</dependency>
183187

184188
<!-- test dependencies -->
185189
<dependency>

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
<junit.version>4.13</junit.version>
5454
<bucket4j.version>7.6.0</bucket4j.version>
5555
<bouncycastle.version>1.80</bouncycastle.version>
56+
<jackson.version>2.18.2</jackson.version>
5657
<gson.version>2.12.1</gson.version>
5758
<jsr305.version>3.0.2</jsr305.version>
5859
<okhttp3.version>4.12.0</okhttp3.version>
@@ -263,9 +264,14 @@
263264
<dependency>
264265
<groupId>com.fasterxml.jackson.core</groupId>
265266
<artifactId>jackson-annotations</artifactId>
266-
<version>2.18.2</version>
267+
<version>${jackson.version}</version>
267268
<optional>true</optional>
268269
</dependency>
270+
<dependency>
271+
<groupId>com.fasterxml.jackson.core</groupId>
272+
<artifactId>jackson-databind</artifactId>
273+
<version>${jackson.version}</version>
274+
</dependency>
269275

270276
<!-- tests -->
271277
<dependency>

0 commit comments

Comments
 (0)