JSF 2 和 IceFaces 2 的 Maven 依赖项
我有一个使用 IceFaces 2 的 Spring JSF 2 项目,我使该项目使用属性>项目方面的 JSF 和 IceFaces 库,并向项目添加了 jsf 功能,然后使用用户库 JSF 2.1 Mojara,然后添加了icefaces 功能也, 我想要做的是将 JSF 2、IceFaces2 的那些 jar 添加到 pom 文件中作为 maven 依赖项 有什么帮助吗?
i have a Spring JSF 2 project which is using IceFaces 2, and i made the project use JSF and IceFaces libraries from properties>project facets, and added jsf capabilities to the project, then used a user library JSF 2.1 Mojara, then added icefaces capabilities too,
what i want to do is add those jars for JSF 2, IceFaces2 in pom file as maven dependencies
any help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我能够通过添加以下依赖项来修复它:
并且我添加了存储库:
well, i was able to fix it by adding following dependencies:
and i added the repo:
我将 ICEfaces 存储库添加到我的 Maven
pom.xml
中:此 Maven 存储库包含
icefaces
和icefaces-compat
工件对于 ICEfaces 版本 2,我将它们作为依赖项包含在我的
pom.xml
中。以下答案描述了如何将 Mojarra JSF 包含在您的provided
pom.xml:
JSF Maven Mojarra 实现
如果您的应用程序服务器已提供非 Mojarra JSF 实现,则使用
获取
pom.xml
中的 Mojarra JSF 工件,并更改应用程序服务器以提供 Mojarra JSF。I added the ICEfaces repository to my Maven
pom.xml
:This Maven repository contains the
icefaces
andicefaces-compat
artifactsfor ICEfaces version 2 and I included them as dependencies in my
pom.xml
.The following answer describes how to include Mojarra JSF in your
pom.xml
:JSF Maven Mojarra implementation
If your application server already provides a non-Mojarra JSF implementation then use
<scope>provided</scope>
for the Mojarra JSF artifacts in your
pom.xml
and change the application server to provide Mojarra JSF.