有人能告诉我将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运行配置来尝试它。 Build失败并显示以下控制台输出。
[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.
答案 0 :(得分:2)
首先, 这个错误
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
来编译某个数据库绑定。
答案 1 :(得分:0)
是的,这是在eclipse中导入maven项目的正确方法,但是你遇到了一些错误。请检查错误窗口上的错误(窗口 - >显示视图 - > General->错误日志)然后您会收到实际错误。