Skip to content

Commit bc74cd2

Browse files
author
Alexandre Dutra
committed
Fix failing Json tests (JAVA-2480 follow-up)
1 parent 507fedb commit bc74cd2

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

core/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@
9191
<groupId>com.github.spotbugs</groupId>
9292
<artifactId>spotbugs-annotations</artifactId>
9393
</dependency>
94+
<dependency>
95+
<groupId>com.fasterxml.jackson.core</groupId>
96+
<artifactId>jackson-core</artifactId>
97+
</dependency>
9498
<dependency>
9599
<groupId>com.fasterxml.jackson.core</groupId>
96100
<artifactId>jackson-databind</artifactId>

integration-tests/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,16 @@
6767
<artifactId>spotbugs-annotations</artifactId>
6868
<scope>test</scope>
6969
</dependency>
70+
<dependency>
71+
<groupId>com.fasterxml.jackson.core</groupId>
72+
<artifactId>jackson-core</artifactId>
73+
<scope>test</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>com.fasterxml.jackson.core</groupId>
77+
<artifactId>jackson-databind</artifactId>
78+
<scope>test</scope>
79+
</dependency>
7080
<dependency>
7181
<groupId>com.tngtech.java</groupId>
7282
<artifactId>junit-dataprovider</artifactId>

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,11 @@
256256
<artifactId>javax.annotation-api</artifactId>
257257
<version>1.2</version>
258258
</dependency>
259+
<dependency>
260+
<groupId>com.fasterxml.jackson.core</groupId>
261+
<artifactId>jackson-core</artifactId>
262+
<version>${jackson.version}</version>
263+
</dependency>
259264
<dependency>
260265
<groupId>com.fasterxml.jackson.core</groupId>
261266
<artifactId>jackson-databind</artifactId>

0 commit comments

Comments
 (0)