带有依赖项的pom.xml中的错误(缺少工件......)

kid*_*uxa 20 spring-mvc maven

一位朋友给我发了一个Maven项目,我试图在我的计算机上本地运行.我在Eclipse中所做的一切,我选择了:

文件 - >导入 - >现有的Maven项目

在那之后,该项目向我展示了我的4个错误pom.xml(Missing artifact ..):

在此输入图像描述

我尝试删除.m2文件夹的内容,然后在Eclipse中我点击了我的项目并选择"Run as" - >"Maven clean"然后"Run as" - >"Maven install".但我仍然有同样的错误.我是Spring的新手,所以我不知道还能做什么.

编辑:

当我尝试这样做:运行as/maven install时,这就是我的控制台所说的:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building DataLayer 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for javax.persistence:javax.persistence:jar:1.0.0 is missing, no     dependency information available
[WARNING] The POM for hibernate-core:hibernate-core:jar:4.2.1.Final is missing, no     dependency information available
[WARNING] The POM for hibernate-commons-annotations:hibernate-commons-annotations:jar:4.0.1.Final is missing, no dependency information available
[WARNING] The POM for jboss-logging:jboss-logging:jar:3.1.0.CR2 is missing, no dependency information available
[WARNING] The POM for jta:jta:jar:1.1 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.065s
[INFO] Finished at: Wed Aug 07 11:41:45 VET 2013
[INFO] Final Memory: 4M/90M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project DataLayer: Could not resolve dependencies for     project SocialManager:DataLayer:jar:0.0.1-SNAPSHOT: The following artifacts could not be resolved: javax.persistence:javax.persistence:jar:1.0.0, hibernate-core:hibernate-core:jar:4.2.1.Final, hibernate-commons-annotations:hibernate-commons-annotations:jar:4.0.1.Final, jboss-logging:jboss-logging:jar:3.1.0.CR2, jta:jta:jar:1.1: Failure to find javax.persistence:javax.persistence:jar:1.0.0 in http://repository.jboss.org/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of JBoss repository has elapsed or updates are forced -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
Run Code Online (Sandbox Code Playgroud)

EDIT2:这是我的完整pom.xml:https://dl.dropboxusercontent.com/u/31349296/pom.xml当我尝试在此处粘贴代码时看起来非常糟糕.

Bar*_*art 22

似乎很多依赖都是不正确的.

在此输入图像描述

在这里下载整个POM

寻找正确依赖关系的好地方是Maven Repository网站.

  • @loki它可以存在于项目的pom中或settings.xml中.如果它在项目的pom.xml中,那么你可以避免这样的问题.如果它在settings.xml中,那么您可以避免使用存储库信息污染项目poms. (2认同)

Oct*_*ius 5

我知道这是一个老问题。但我希望我的回答对您有所帮助。我有同样的问题,我认为问题是它无法在本地存储库中找到那些.jar文件。因此,我要做的是将以下代码添加到pom.xml中,它可以正常工作。

<repositories>
  <repository>
      <id>spring-milestones</id>
      <name>Spring Milestones</name>
      <url>https://repo.spring.io/libs-milestone</url>
      <snapshots>
          <enabled>false</enabled>
      </snapshots>
  </repository>
</repositories>
Run Code Online (Sandbox Code Playgroud)