In maven pom.xml:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.5.0</version>
<type>bundle</type>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.5.0</version>
<type>bundle</type>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.5.0</version>
<type>bundle</type>
</dependency>
This 3 libs can't be downloaded by maven, but all other libs could be downloaded successfully.
I tried this on 2 computer in different network environment, the result is the same.
Error message in eclipse:
Missing artifact com.fasterxml.jackson.core:jackson-core:bundle:2.5.0
Any suggestion on how to check why?