使用 sbt 生成带有icefaces的Web应用程序

发布于 2024-11-29 05:56:13 字数 379 浏览 2 评论 0原文

我是 sbt 新手,我将使用 jsf 2.0 mojarra 和icefaces 生成一个 Web 应用程序,但我不知道如何构建 build.sbt。我尝试这样的事情:

libraryDependencies += "org.icefaces" % "icefaces" % "2.0.2"
libraryDependencies += "net.java" % "jsf-api" % "2.1.2"
libraryDependencies += "net.java" % "jsf-impl" % "2.1.2"

也许这是可怕的错误,sbt找不到模块:

找不到模块:com.sun.faces#jsf-impl:2.1.1-b04/ivys/ivy.xml

I'm new to sbt and I will generate a web application with jsf 2.0 mojarra and icefaces, but i don't know how to build the build.sbt. I try things like this:

libraryDependencies += "org.icefaces" % "icefaces" % "2.0.2"
libraryDependencies += "net.java" % "jsf-api" % "2.1.2"
libraryDependencies += "net.java" % "jsf-impl" % "2.1.2"

Maybe is this horrible wrong and sbt can't find the module:

module not found: com.sun.faces#jsf-impl:2.1.1-b04/ivys/ivy.xml

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

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

发布评论

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

评论(1

南渊 2024-12-06 05:56:13
resolvers += "java.net maven 2 repo" at "http://download.java.net/maven/2" 

libraryDependencies += "org.icefaces" % "icefaces" % "2.0.2"

libraryDependencies += "com.sun.faces" % "jsf-api" % "2.1.2"

libraryDependencies += "com.sun.faces" % "jsf-impl" % "2.1.2"

这仅适用于 sbt 0.10+。确保表达式之间保留空行。

resolvers += "java.net maven 2 repo" at "http://download.java.net/maven/2" 

libraryDependencies += "org.icefaces" % "icefaces" % "2.0.2"

libraryDependencies += "com.sun.faces" % "jsf-api" % "2.1.2"

libraryDependencies += "com.sun.faces" % "jsf-impl" % "2.1.2"

This will only work with sbt 0.10+. Make sure you keep the blank lines between expressions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文