pom.xml 中出现错误

发布于 2024-12-18 10:44:51 字数 567 浏览 1 评论 0原文

我需要帮助,因为我没有使用 Maven 的经验。我正在尝试运行此示例应用程序,教程如下: http://www.javacodegeeks.com/2011/01/restful-web-services-with-resteasy-jax.html

我已经按照中所述编辑了 pom.xml教程,但我收到以下错误:

  • 缺少工件 javax.servlet-api:jar.2.5:provided
  • 无法读取 org.jboss.resteasy:resteasy-jettison-provider 的工件描述符:
  • 缺少工件 junit:junit:jar:3.8.1 :测试
  • 缺少工件 javax.servlet.jsp:jsp-api:jar:2.1:provided 等等...

它们都是某种依赖性错误,但由于我不知道如何使用 Maven,所以我不知道如何解决它们。

I need help because I have no experience using Maven. I am trying to run this sample application a tutorial for is here: http://www.javacodegeeks.com/2011/01/restful-web-services-with-resteasy-jax.html

I have edited the pom.xml as stated in the tutorial, but Iam getting these errors:

  • Missing artifact javax.servlet-api:jar.2.5:provided
  • Failed to read artifact descriptor for org.jboss.resteasy:resteasy-jettison-provider:
  • missing artifact junit:junit:jar:3.8.1:test
  • missing artifact javax.servlet.jsp:jsp-api:jar:2.1:provided
    etc...

They all are kind of dependency errors, but since I have no idea how to use Maven I don't know how to solve them.

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

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

发布评论

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

评论(1

奢华的一滴泪 2024-12-25 10:44:51

JBoss 更改了 Maven 存储库的位置,因此将存储库元素中的 http://repository.jboss.org/maven2/ 更改为 ;http://repository.jboss.org/nexus/content/groups/public/

JBoss 经常更改他们的存储库,因此它会变得非常混乱,因为有互联网上有很多网址(甚至他们自己的文档都已磨损),但大多数都不起作用。

JBoss has changed the location of the maven repository so change <url>http://repository.jboss.org/maven2/</url> in the repository element to <url>http://repository.jboss.org/nexus/content/groups/public/</url>

JBoss often changes their repositoy so it gets really confused since there are so many urls on the internet (even their own documentation are worng) but most of them don't work.

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