Maven - 无法下载 fasterxml.jackson
Maven - can't download fasterxml.jackson
在 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>
maven下载不了这3个库,其他库都可以下载成功
我在不同网络环境的2台电脑上试过,结果是一样的
eclipse 中的错误信息:
Missing artifact com.fasterxml.jackson.core:jackson-core:bundle:2.5.0
关于如何检查原因有什么建议吗?
<type>bundle</type>
在这里不合适。
尝试:
<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>
另一种解决方法是编辑属性和 select 'jar' 而不是 'bundle',请参见下面的示例,
如果 maven 无法下载,这将解决问题。
我也想添加依赖。我得到了同样的错误。一旦我删除了行 bundle。问题已解决。
在 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>
maven下载不了这3个库,其他库都可以下载成功
我在不同网络环境的2台电脑上试过,结果是一样的
eclipse 中的错误信息:
Missing artifact com.fasterxml.jackson.core:jackson-core:bundle:2.5.0
关于如何检查原因有什么建议吗?
<type>bundle</type>
在这里不合适。
尝试:
<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>
另一种解决方法是编辑属性和 select 'jar' 而不是 'bundle',请参见下面的示例,
如果 maven 无法下载,这将解决问题。
我也想添加依赖。我得到了同样的错误。一旦我删除了行 bundle。问题已解决。