使用Eclipse安装Maven插件

时间:2011-09-12 08:20:45

标签: eclipse plugins maven

我是Maven的新手,我必须在eclipse中安装maven插件。我正面临着一些问题,因为我得到的不同网站的输入不起作用。 我还浏览了像this这样的现有帖子,其中讨论了运行命令,如:

mvn install:install-file -Dfile=c:\kaptcha-2.3.jar -DgroupId=com.google.code 
-DartifactId=kaptcha -Dversion=2.3 -Dpackaging=jar

但是我在哪里运行这个命令??

This site谈论添加参数 maven.repo.remote ,如:

maven -DartifactId=maven-eclipse-plugin-plugin -DgroupId=mevenide -Dversion=0.3.1 plugin:download

BUt这些参数设置在哪里?

请有人帮我指点一些好资源,这样可以轻松地在eclipse中安装maven插件吗?

我的eclipse版本:indigo版本,Java EE IDE。

4 个答案:

答案 0 :(得分:28)

如果您正在运行eclipse Indigo for Java EE,您可以通过以下方式安装缺少的m2e插件:

Help-> Install new software -> Work with: Indigo -> General Purpose Tools -> m2e

另请参阅:Where is m2eclipse?

答案 1 :(得分:9)

  • 从Eclipse Indigo Java EE版本开始
  • m2e是Eclipse的maven集成。在IDE中安装此插件。
  • 导入maven项目(如果您有任何项目或创建新项目)

mvn install:install-file用于在本地存储库中安装maven工件,如果它不能由maven自动下载和安装。这通常不是必需的,但如果您必须这样做,您可以转到Run as - > Run Configurations...并创建适当的Maven Build配置。

maveide未得到维护且不会被推荐。

答案 2 :(得分:5)

在Indigo版本中,even已经包含在eclipse插件m2e中。在插件网站上,你会发现很多材料。步骤通常是:

  1. 使用m2e安装eclipse
  2. 单独安装current maven version(根据您的需要,Maven 2.2.x或Maven 3.0.x)
  3. 由于文档的原因,在Eclipse中配置已安装的Maven。在Window > Preferences > Maven > Installations部分中执行此操作。如果在Eclipse中看不到,则首先必须使用正常的安装过程安装m2e:Help > Install New Software > Work with: Indigo > Filter text: m2e > Collaboration > m2e。接下来,接下来,接下来......
  4. 希望有所帮助。

答案 3 :(得分:2)

Eclipse>帮助> Eclipse Marketplace ......

搜索m2e

安装Maven Integration for Eclipse (Juno and newer)。 [它也适用于Indigo]

enter image description here