由于 REPO url 被阻止,Primefaces 依赖项无法导入

发布于 2024-11-25 11:47:15 字数 761 浏览 1 评论 0原文

我正在开发一个基于 Maven 的 Spring 项目。我为 Primefaces 添加了以下依赖项。

<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>2.2</version>

并遵循存储库,我正在使用

<repository>
<id>prime-repo</id>
<name>Prime Technology Maven Repository</name>
<url>http://repository.prime.com.tr</url>
<layout>default</layout>

但问题是网址 http://repository.prime.com.tr 在我们的网络中被阻止,因此我在 .m2 存储库位置手动复制了 primefaces 的 jar 文件。

现在的问题是,它没有选择 POM.xml 中提到的 Primefaces 依赖项。它甚至没有在 STS 内的 Java 构建路径中显示它。

有人可以请建议吗?

I am working on a maven based Spring project.I have added following dependency for Primefaces.

<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>2.2</version>

And following Repository,I am using

<repository>
<id>prime-repo</id>
<name>Prime Technology Maven Repository</name>
<url>http://repository.prime.com.tr</url>
<layout>default</layout>

But the problem is that the url http://repository.prime.com.tr is blocked in our network, so I manually copied jar file of primefaces at .m2 repo location.

Now the problem is , it is not picking the Primefaces dependency mentioned in POM.xml.It is not even showing it in Java Build Path inside STS.

Can somebody please advise.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请止步禁区 2024-12-02 11:47:15

手动将文件复制到 .m2/repository 可能还不够。
您可以尝试在存储库中手动安装它:

mvn install:install-file -Dfile=path/to/local/primefaces.jar
                         -DgroupId=org.primefaces
                         -DartifactId=primefaces
                         -Dversion=2.2
                         -Dpackaging=jar

Manually copying the file into the .m2/repository might not be sufficient.
You can try to install it manually in your repository:

mvn install:install-file -Dfile=path/to/local/primefaces.jar
                         -DgroupId=org.primefaces
                         -DartifactId=primefaces
                         -Dversion=2.2
                         -Dpackaging=jar
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文