Skip to content

Commit 8db9bd5

Browse files
zhilingcfeast-ci-bot
authored andcommitted
Fix jackson dependency issue (#82)
1 parent 9215a9e commit 8db9bd5

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

core/pom.xml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,24 @@
184184
<version>1.48.0</version>
185185
</dependency>
186186

187+
<!-- Jackson due to jinjava dependency problems -->
188+
<dependency>
189+
<groupId>com.fasterxml.jackson.core</groupId>
190+
<artifactId>jackson-databind</artifactId>
191+
<version>2.9.4</version>
192+
</dependency>
193+
<dependency>
194+
<groupId>com.fasterxml.jackson.core</groupId>
195+
<artifactId>jackson-core</artifactId>
196+
<version>2.9.4</version>
197+
</dependency>
198+
<dependency>
199+
<groupId>com.fasterxml.jackson.core</groupId>
200+
<artifactId>jackson-annotations</artifactId>
201+
<version>2.9.4</version>
202+
</dependency>
203+
204+
187205
<!--compile 'com.github.spullara.mustache.java:compiler:0.9.5'-->
188206
<dependency>
189207
<groupId>com.github.spullara.mustache.java</groupId>
@@ -194,6 +212,21 @@
194212
<groupId>com.hubspot.jinjava</groupId>
195213
<artifactId>jinjava</artifactId>
196214
<version>2.4.12</version>
215+
<!--exclude jackson-->
216+
<exclusions>
217+
<exclusion>
218+
<groupId>com.fasterxml.jackson.core</groupId>
219+
<artifactId>jackson-databind</artifactId>
220+
</exclusion>
221+
<exclusion>
222+
<groupId>com.fasterxml.jackson.core</groupId>
223+
<artifactId>jackson-core</artifactId>
224+
</exclusion>
225+
<exclusion>
226+
<groupId>com.fasterxml.jackson.core</groupId>
227+
<artifactId>jackson-annotations</artifactId>
228+
</exclusion>
229+
</exclusions>
197230
</dependency>
198231
<!--compile 'io.micrometer:micrometer-core:1.0.7'-->
199232
<dependency>

0 commit comments

Comments
 (0)