2

我目前在尝试将另一个 Maven 项目(特别是 Aerospike)的依赖项添加到我的项目中时遇到问题。我已经mvn install在 Aerospike 项目上做了一个,所以在我的存储库中(在 Linux 上:~/.m2/repository/com/aerospike/aerospike-client/3.0.6)我看到了 aerospike-client-3.0.6.jar.lastUpdated 文件. 但是,当我添加依赖项时

<dependency>
    <groupId>com.aerospike</groupId>
    <artifactId>aerospike-client</artifactId>
    <version>3.0.6</version>
    <scope>compile</scope>
</dependency>

进入我的项目并执行mvn install,它返回此错误:

[INFO] ------------------------------------------------------------------------
[INFO] Building in-memory database poc 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for com.aerospike:aerospike-client:jar:3.0.6 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.601s
[INFO] Finished at: Fri Aug 16 11:49:43 EDT 2013
[INFO] Final Memory: 18M/954M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project: Could not resolve dependencies for project: Failure to find com.aerospike:aerospike-client:jar:3.0.6 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-public-repository-group 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.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

提前致谢!

4

1 回答 1

1

问题

控制台输出显示 Maven 正在JBoss 公共存储库com.aerospike:aerospike中搜索工件,但该工件不存在。

Failure to find com.aerospike:aerospike-client:jar:3.0.6 in                                         
http://repository.jboss.org/nexus/content/groups/public

OP表示他在本地安装了它。

讨论

Maven 正在尝试从没有该工件的远程存储库下载本地安装的工件。默认情况下,首先在本地存储库中搜索依赖项。AFAIK,唯一可以覆盖此行为的是settings.xml.

AFAIK,离线构建(-o)应该覆盖任何此类策略。我试图通过从本地 repo 中删除依赖项并故意声明不存在的依赖项来重现这种情况,并且 Maven 的行为与文档一致(离线构建不会尝试下载)。不过,我还没有玩过更新策略。

解决方案

跟进评论,我已经在以下环境中验证了离线构建过程:

Apache Maven 3.1.0 
Java version: 1.7.0_25, vendor: Oracle Corporation
OS name: "linux", version: "3.2.0-23-generic", arch: "amd64", family: "unix"

简而言之,离线构建过程:

  • 下载所有在线依赖项
  • 安装所有离线依赖项
  • 运行离线构建

所有命令都从项目根文件夹运行。

首先,从您的 pom中注释在任何远程存储库中找不到的所有依赖项,例如:

<!--
 <dependency>
        <groupId>does</groupId>
        <artifactId>not</artifactId>
        <version>exist</version>
 </dependency>
-->

通过下载所有依赖项准备离线构建:

mvn dependency:go-offline

如果您不注释掉缺少的依赖项,则此目标将失败。您可以通过观察 Maven 已成功下载控制台输出中的所有工件来验证它。

接下来,在本地 repo 中手动安装缺少的依赖项:

mvn install:install-file -Dfile=<PATH_TO_MISSING_DEP_JAR_FILE> 
                         -DgroupId=does  
                         -DartifactId=not   
                         -Dversion=exist 
                         -Dpackaging=jar 

这将生成not-exist.jar(<PATH_TO_MISSING_DEP_JAR_FILE> 的副本)以及not-exist.pom本地存储库中的元数据文件<LOCAL_REPO_PATH>/.m2/repository/does/not/exist/

验证这些文件是否存在于该确切的目录结构下。不同平台的本地存储库的默认位置在此处,但如果不存在,则运行:

mvn help:effective-settings > settings.log

这会将您的项目的插值设置转储到settings.log文件中。使用文本编辑器打开它,并在以下位置阅读本地 repo 的路径

<settings>
  ...
  <localRepository>/path/to/local/repo/</localRepository>
  ...
</settings>

现在您可以在离线模式下运行构建:

mvn clean install -o

您也可以在设置文件中设置离线模式,但这将为指定用户或系统范围设置离线模式,而不是在您需要时为每个项目设置的命令行开关。

结论

完全按照描述仔细运行此过程,如果仍然无法构建项目,请运行:

mvn help:effective-pom > pom.log
mvn help:effective-settings > settings.log

pom.log并在此处发布和settings.log文件的内容。

于 2013-08-16T19:29:23.847 回答