0

我是 Maven 新手,所以我可能会遗漏一些明显的东西,但是我有一个 Maven 项目,当我尝试“mvn package”这个项目时它失败了

ERROR BUILD ERROR INFO
------------------------------------------------------------------------  [INFO] Failed to resolve artifact.

Missing:
----------  1) org.apache.maven.wagon:wagon-ftp:jar:1.0-rc1-SNAPSHOT

  Try downloading the file manually from the project website.

  Then, install it using the command:
      mvn install:install-file -DgroupId=org.apache.maven.wagon -DartifactId=wagon-ftp -Dversion=1.0-rc1-SNAPSHOT -Dpackaging=ja r -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there:
      mvn deploy:deploy-file -DgroupId=org.apache.maven.wagon -DartifactId=wagon-ftp -Dversion=1.0-rc1-SNAPSHOT -Dpackaging=jar
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency:
        1) com.cgs:domain:jar:1.0-SNAPSHOT
        2) org.apache.maven.wagon:wagon-ftp:jar:1.0-rc1-SNAPSHOT

---------- 
1 required artifact is missing.

    for artifact:   com.cgs:domain:jar:1.0-SNAPSHOT

    from the specified remote repositories:   ibiblio.org (http://mirrors.ibiblio.org/pub/mirrors/maven2)

我不明白的第一件事是它需要1.0-rc1-SNAPSHOT的版本。该项目的网站说当前版本是 1.0- beta -5。我想beta在RC之前

无论如何,我已经尝试下载最新的 wagon-ftp JAR(1.0 beta 6 jar)并根据错误消息中的说明进行部署。但你猜怎么着,这给了我同样的错误。

4

1 回答 1

2

我刚刚在输入这个问题的结尾时找到了解决方案。

问题是我从失败的项目 POM 所在的同一目录运行“mvn install:install-file” 。当我从另一个没有 pom.xml 的目录运行它时,它安装得很好。

于 2008-10-04T14:15:20.270 回答