Maven - can't download fasterxml.jackson

<type>bundle</type> is not appropriate here.

Try :

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-core</artifactId>
    <version>2.5.0</version>
</dependency>
<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.5.0</version>
</dependency>
<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-annotations</artifactId>
    <version>2.5.0</version>
</dependency>

Another workaround is to edit the properties and select 'jar' instead of 'bundle', See an example below,

enter image description here

enter image description here

This will resolve the issue if maven can't download it.