Skip to content

Commit be01545

Browse files
committed
Force Jackson version to override the SB Jackson version
Signed-off-by: Artur Ciocanu <[email protected]>
1 parent 222b9a0 commit be01545

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

sdk-tests/pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,40 @@
3838
<type>pom</type>
3939
<scope>import</scope>
4040
</dependency>
41+
<!--
42+
Force Jackson version because of DurableTask,
43+
otherwise we get the latest from Spring Boot
44+
-->
45+
<dependency>
46+
<groupId>com.fasterxml.jackson.core</groupId>
47+
<artifactId>jackson-databind</artifactId>
48+
<version>${jackson.version}</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.fasterxml.jackson.core</groupId>
52+
<artifactId>jackson-core</artifactId>
53+
<version>${jackson.version}</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>com.fasterxml.jackson.core</groupId>
57+
<artifactId>jackson-annotations</artifactId>
58+
<version>${jackson.version}</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>com.fasterxml.jackson.datatype</groupId>
62+
<artifactId>jackson-datatype-jsr310</artifactId>
63+
<version>${jackson.version}</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.fasterxml.jackson.datatype</groupId>
67+
<artifactId>jackson-datatype-jdk8</artifactId>
68+
<version>${jackson.version}</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>com.fasterxml.jackson.module</groupId>
72+
<artifactId>jackson-module-parameter-names</artifactId>
73+
<version>${jackson.version}</version>
74+
</dependency>
4175
<dependency>
4276
<groupId>org.junit.platform</groupId>
4377
<artifactId>junit-platform-commons</artifactId>

0 commit comments

Comments
 (0)