Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing artifact com.fasterxml.jackson.core:jackson-databind:bundle:2.9.8

Tags:

jackson

Working with Jackson library, it came following error in Eclipse 4.9.0 version

Missing artifact com.fasterxml.jackson.core:jackson-databind:bundle:2.9.6 pom.xml /Jackson-Usage line 7 Maven Dependency Problem

The problem came when I added maven dependencies by GUI to add dependencies.

like image 751
vimal krishna Avatar asked Jan 05 '19 17:01

vimal krishna


People also ask

What is Jackson Databind?

Advertisements. Data Binding API is used to convert JSON to and from POJO (Plain Old Java Object) using property accessor or using annotations. It is of two type. Simple Data Binding - Converts JSON to and from Java Maps, Lists, Strings, Numbers, Booleans and null objects.

What is Jackson Databind vulnerability?

DESCRIPTION: FasterXML jackson-databind could allow a remote attacker to execute arbitrary code on the system, caused by deserialization flaws. By using two different gadgets that bypass a blocklist, an attacker could exploit this vulnerability to execute arbitrary code on the system. CVSS Base Score: 7.3.

What is Jackson dependency?

No Dependency. - jackson library does not require any other library apart from jdk. Open Source - jackson library is open source and is free to use.


1 Answers

The solution was from generated dependencies

<dependencies>
<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.9.8</version>
    <type>bundle</type>
</dependency>

to remove and save.

<type>bundle</type>
like image 192
vimal krishna Avatar answered Sep 23 '22 21:09

vimal krishna