Open TatuLund opened 1 year ago
Jackson dependency has been updated in Vaadin Charts v4.3.3 to 2.16.1, which is newer than in AppSecKit, so it is now more appropriate to do the exclusion in appsec-kit
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>appsec-kit-v8</artifactId>
<version>1.0.5</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
But this is not working. So one is forced to use 2.14.3 instead due it is the dependency in appsec-kit.
AppSecKit uses newer version of Jackson than Charts does. Application having both dependencies wont start unless there is exclusion made.