Seam 3 模块 - 入门

发布于 2024-09-13 21:04:32 字数 146 浏览 7 评论 0原文

我需要有关 Seam 3 模块设置的帮助。当我尝试使用 Seam 3 模块、持久性时,无法找到 JBoss Java EE 6 规范。

我读到我需要使用 maven 3 或声明可以找到该工件的存储库。我正在使用maven 3,但仍然不行。

沃尔特

I need help getting setup on Seam 3 modules. When I try to use the Seam 3 module, persistence, the JBoss Java EE 6 spec cannot be found.

I was reading that I need to use maven 3 or declare the repository where that artifact can be found. I am using maven 3, but still no go.

Walter

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

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

发布评论

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

评论(1

够运 2024-09-20 21:04:32

我需要有关 Seam 3 模块设置的帮助。当我尝试使用 Seam 3 模块、持久性时,无法找到 JBoss Java EE 6 规范。

提供链接、一些 pom.xml 片段或一些说明问题的错误跟踪通常会有所帮助。

我读到我需要使用 maven 3 或声明可以找到该工件的存储库。我正在使用maven 3,但仍然不行。

读书去哪儿?我非常怀疑是否需要使用 Maven 3,并且 Maven 3 不会神奇地解决比 Maven 2 更多的依赖关系。我的猜测是您只是缺少一些存储库。

但由于您没有说明什么/如何/在哪里,我只能建议添加 JBoss 公共存储库组(还包含 java.net 工件):

<repositories>
  <repository>
    <id>jboss-public-repository-group</id>
    <name>JBoss Public Repository Group</name>
    <url>http://repository.jboss.org/nexus/content/groups/public</url>
  </repository>
</repositories>

I need help getting setup on Seam 3 modules. When I try to use the Seam 3 module, persistence, the JBoss Java EE 6 spec cannot be found.

Providing links, some pom.xml snippet or some error trace illustrating a problem is usually helpful.

I was reading that I need to use maven 3 or declare the repository where that artifact can be found. I am using maven 3, but still no go.

Reading where? I highly doubt that using Maven 3 is required and Maven 3 won't magically resolve more dependencies than Maven 2. My guess is that you're just missing some repositories.

But since you didn't say anything about the what/how/where, I can only suggest to add the JBoss Public Repository Group (that contains also java.net artifacts):

<repositories>
  <repository>
    <id>jboss-public-repository-group</id>
    <name>JBoss Public Repository Group</name>
    <url>http://repository.jboss.org/nexus/content/groups/public</url>
  </repository>
</repositories>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文