我想在 apache commons-text项目中包含一个 Maven 依赖项。我尝试将此依赖项添加到我的 pom 中:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
并包括以下存储库:
<repository>
<id>apache_snapshots_repo</id>
<url>http://repository.apache.org/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
我从 commons-text 文档的Dependency Repository Locations部分获取了该存储库。但是,maven 仍然无法解决依赖关系。
那么,为了与 Apache commons-text 一起工作,我应该配置哪个正确的依赖项和存储库?