在 eclipse juno 中安装 maven 插件

2022-09-02 05:07:02

我正在尝试在eclipse中安装maven 1.5,不幸的是,我遇到了这样的错误:

Cannot complete the install because one or more required items could not be found.
  Software being installed: m2e - Maven Integration for Eclipse (includes Incubating components) 1.5.0.20140606-0033 (org.eclipse.m2e.feature.feature.group 1.5.0.20140606-0033)
  Missing requirement: Maven Integration for Eclipse 1.5.0.20140606-0033 (org.eclipse.m2e.core 1.5.0.20140606-0033) requires 'bundle com.google.guava [14.0.1,16.0.0)' but it could not be found
  Cannot satisfy dependency:
    From: m2e - Maven Integration for Eclipse (includes Incubating components) 1.5.0.20140606-0033 (org.eclipse.m2e.feature.feature.group 1.5.0.20140606-0033)
    To: org.eclipse.m2e.core [1.5.0.20140606-0033]

答案 1

EClipse juno不支持maven 1.5..他们仍然没有添加1.5的功能

所以试试1.4或1.3

http://download.eclipse.org/technology/m2e/releases/1.3

http://download.eclipse.org/technology/m2e/releases/1.4

专家安装

选项 1 :

  1. Open Eclipse IDE
  2. 单击“帮助”->安装新软件...
  3. 点击右上角的添加按钮
  4. 在弹出窗口中:将“名称”填写为“M2Eclipse”,将“位置”填写为 http://download.eclipse.org/technology/m2e/releases/1.4
  5. 现在单击“确定”在该安装开始之后。

选项 2 :-

  1. 打开日食
  2. 转到帮助 -> Eclipse Marketplace
  3. 按 Maven 搜索
  4. 单击“Eclipse 的 Maven Integration for Eclipse”部分中的“安装”按钮
  5. 按照说明逐步进行操作

成功安装后,在 Eclipse 中执行以下操作:

  1. 转到窗口 -->首选项
  2. 观察,Maven在左侧面板上被征召入伍

最后

  1. 单击现有项目
  2. 选择配置 ->转换为 Maven 项目

答案 2

这是因为maven 1.5与eclipse juno不兼容。所以我们需要使用 maven 1.4 或 1.3

安装 maven 1.4 的步骤如下

  1. 单击日食中的帮助
  2. 安装新软件
  3. 网站位置的网址为“http://download.eclipse.org/technology/m2e/releases"
  4. 取消选中“仅显示可用软件的最新版本”复选框,如果不取消选中该复选框,则只会显示最新版本并且不显示maven 1.4。
  5. 选择 m2e 和 slf4j 的 1.4 版本,然后单击下一步。

注意:maven v 1.3 是兼容的,juno 的正确网址:download.eclipse.org/technology/m2e/releases/1.3


推荐