无法在eclipse中创建maven项目

时间:2017-05-06 06:24:03

标签: java eclipse maven

我从日食市场下载了maven api 但是当我尝试创建任何maven项目时,它会给我以下错误

Could not calculate build plan: Plugin
org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its
dependencies could not be resolved: Failed to read artifact descriptor
for org.apache.maven.plugins:maven-resources-plugin:jar:2.5

此外,当我尝试使用maven build运行错误项目时,它会出现以下错误:

 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.

此外,我无法找到maven的setting.xml文件。请告诉我应该在哪里找到这个。我从eclipse市场下载了maven,那么maven的主目录在哪里?

此外,我发现maven没有在存储库文件夹中创建我项目的任何jar文件。

1 个答案:

答案 0 :(得分:1)

  

我从eclipse市场下载了maven,

您下载的内容是Maven Integration for Eclipse,也称为 m2e (Maven for Eclipse)

它允许您将maven项目导入Eclipse工作区。

首先,将Eclipse放在一边,然后从Maven Download page

下载maven本身
  

我无法找到maven的setting.xml文件。请告诉我应该在哪里找到它。

您有一个已安装maven的全局版本:请参阅" Maven settings"。
您可以使用~/.m2/settings.xml或(Windows)%USERPROFILE%\.m2\settings.xml中手动创建的一个覆盖它。

遵循此maven tutorial并确保您有一个小型Java项目,您可以手动运行mvn clean install

然后,您可以import that project into Eclipse

https://www.tutorialspoint.com/maven/images/import_project2.jpg