找不到锅炉管依赖项

Boilerpipe dependency not found

根据https://github.com/Netbreeze-GmbH/boilerpipe,锅炉管道的 Maven 依赖项是

 <dependency>
  <groupId>de.l3s.boilerpipe</groupId>
  <artifactId>boilerpipe-core</artifactId>
  <version>1.2.2</version>
</dependency>

但此依赖项无法通过 Maven 获得。 我发现最接近的是 http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22de.l3s.boilerpipe%22%20AND%20a%3A%22boilerpipe%22 此依赖项是版本 1.1.0 。如何添加依赖项 1.2.2?

更新:

我在这个位置找到了依赖:https://mvnrepository.com/artifact/com.syncthemall/boilerpipe/1.2.2

您可以使用 mvn clean install 构建项目。这会将工件安装到您的本地存储库。然后你就可以使用它了。

如果您在全球范围内需要它,您最好将工件(您构建的)部署到自定义 Maven 存储库。或者请维护者将其部署到中央存储库。

这里的简单回答是:你不能因为它在 Maven Central 中不存在。您提供的位置 https://mvnrepository.com/artifact/com.syncthemall/boilerpipe/1.2.2 不是 Maven Central。这在 Github 存储库(源存储库)上提供了一个位置,该存储库尚未将版本 1.2.2 部署到 Maven Central...

您可能需要做的是克隆 GitHub 存储库并在本地构建并自行安装..或者最好使用存储库管理器并将其部署在您的企业网络本地...