Skip to content

Commit

Permalink
Fix jackson dependency issue (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhilingc authored and feast-ci-bot committed Jan 17, 2019
1 parent 9215a9e commit 8db9bd5
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,24 @@
<version>1.48.0</version>
</dependency>

<!-- Jackson due to jinjava dependency problems -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.4</version>
</dependency>


<!--compile 'com.github.spullara.mustache.java:compiler:0.9.5'-->
<dependency>
<groupId>com.github.spullara.mustache.java</groupId>
Expand All @@ -194,6 +212,21 @@
<groupId>com.hubspot.jinjava</groupId>
<artifactId>jinjava</artifactId>
<version>2.4.12</version>
<!--exclude jackson-->
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--compile 'io.micrometer:micrometer-core:1.0.7'-->
<dependency>
Expand Down

0 comments on commit 8db9bd5

Please sign in to comment.