我正在尝试下载gnu.trove库,我具有以下依赖性:
<!-- https://mvnrepository.com/artifact/gnu.trove/trove -->
<dependency>
<groupId>gnu.trove</groupId>
<artifactId>trove</artifactId>
<version>3.0.3</version>
</dependency>
但是我得到这个错误:
Could not find artifact gnu.trove:trove:jar:3.0.3 in central (https://repo.maven.apache.org/maven2)
为什么?
我应该在
pom.xml
中添加其他存储库吗?现在,我列出了该存储库:<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
最佳答案
尝试从mvnRepository添加回购
<repository>
<id>mvnrepository</id>
<url>http://mvnrepository.com/artifact</url>
</repository>