在 pom.xml 中添加 feed4j 依赖项
Add feed4j dependency in pom.xml
我无法在 pom.xml 中为 feed4j.jar
添加依赖项
当我 select 对 feed4j 的依赖时,我得到 feed4junit 而不是 feed4j。
当我在 pom.xml
中添加依赖项时
<dependency>
<groupId>feed4j</groupId>
<artifactId>feed4j</artifactId>
<version>1.0</version>
</dependency>
我收到一个错误
Missing artifact feed4j:feed4j:jar:1.0
因此,当我尝试 mvn clean install 时出现错误
package it.sauronsoftware.feed4j does not exist
请帮忙。
Feed4j 不在 Maven 中央存储库中。您有多种选择:
- 使用具有可用的 feed4j 工件的 Maven 存储库。您可以设置自己的 Nexus 或 Artifactory。
- 在您的项目中包含 jar 文件并使用 maven 系统范围(有关如何使用它的示例,请参阅 this SO question)
- 在本地 Maven 存储库中手动安装依赖项。 Here 是一个简短的教程。
最终,我找到了答案here but feed4j is not included in the repository.jboss that's why I used the pentaho-releases。
我无法在 pom.xml 中为 feed4j.jar
添加依赖项当我 select 对 feed4j 的依赖时,我得到 feed4junit 而不是 feed4j。
当我在 pom.xml
中添加依赖项时<dependency>
<groupId>feed4j</groupId>
<artifactId>feed4j</artifactId>
<version>1.0</version>
</dependency>
我收到一个错误
Missing artifact feed4j:feed4j:jar:1.0
因此,当我尝试 mvn clean install 时出现错误
package it.sauronsoftware.feed4j does not exist
请帮忙。
Feed4j 不在 Maven 中央存储库中。您有多种选择:
- 使用具有可用的 feed4j 工件的 Maven 存储库。您可以设置自己的 Nexus 或 Artifactory。
- 在您的项目中包含 jar 文件并使用 maven 系统范围(有关如何使用它的示例,请参阅 this SO question)
- 在本地 Maven 存储库中手动安装依赖项。 Here 是一个简短的教程。
最终,我找到了答案here but feed4j is not included in the repository.jboss that's why I used the pentaho-releases。