Maven > Existing Maven Projects-6ren">
gpt4 book ai didi

java - 将 Maven 项目 "YCSB"导入 Eclipse

转载 作者:行者123 更新时间:2023-12-02 04:22:35 25 4
gpt4 key购买 nike

有人可以告诉我将 Maven 项目(在我的例子中是 YCSB)导入 Eclipse Luna 的正确方法吗?我正在通过 Import > Maven > Existing Maven Projects 进行尝试。 Eclipse导入了所有文件夹和文件,但每个文件夹POM.xml都有错误。

Plugin execution not covered by lifecycle configuration:
org.apache.maven.plugins:maven-checkstyle-plugin:2.15:checkstyle (execution: validate, phase: validate)

我也不知道如何构建和运行该项目。我通过使用 clean package 目标配置 Maven 运行配置进行尝试并进行编译。构建失败并显示以下控制台输出。

[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.087 s
[INFO] Finished at: 2015-09-15T14:04:29+01:00
[INFO] Final Memory: 19M/170M
[INFO] ------------------------------------------------------------------------
[ERROR] Plugin org.apache.maven.plugins:maven-surefire-plugin:2.12.4 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-surefire-plugin:jar:2.12.4: Could not transfer artifact org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 from/to central (http://repo.maven.apache.org/maven2): repo.maven.apache.org: Der Name oder der Dienst ist nicht bekannt: Unknown host repo.maven.apache.org: Der Name oder der Dienst ist nicht bekannt -> [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/PluginResolutionException

使用命令行命令 mvn clean package 构建项目可以正确构建项目。

我的系统安装了 Ubuntu 14.04 和 Maven 3。

最佳答案

首先,这个错误

Plugin execution not covered by lifecycle configuration:
org.apache.maven.plugins:maven-checkstyle-plugin:2.15:checkstyle (execution: validate, phase: validate)

发生这种情况是因为您没有在 eclipse 中安装“Eclipse Checkstyle Plug-in”。在eclipse菜单:帮助->安装新软件,输入此站点http://eclipse-cs.sourceforge.net/update搜索checkstyle并安装此插件,pol.xml中的错误将全部消失。

第二,这个错误

Plugin org.apache.maven.plugins:maven-surefire-plugin:2.12.4 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-surefire-plugin:jar:2.12.4: Could not transfer artifact org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 from/to central (http://repo.maven.apache.org/maven2): repo.maven.apache.org: Der Name oder der Dienst ist nicht bekannt: Unknown host repo.maven.apache.org:
Der Name oder der Dienst ist nicht bekannt-> [Help 1]

表示您的网络连接断开,maven无法下载依赖的jar文件进行编译。检查您的互联网连接或为 Maven 配置代理。当上面下来后,使用mvn clean package来编译maven。也可以使用mvn -pl com.yahoo.ycsb:mongodb-binding -am clean package来编译仅某个数据库绑定(bind)。

关于java - 将 Maven 项目 "YCSB"导入 Eclipse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32585793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com