Failed to install maven plugin for eclipse luna

I am trying to install maven plugin for eclipse luna via eclipse marketplace but I am getting the following error.

Cannot complete the install because one or more required items could not be found.
  Software being installed: Maven Development Tools 0.3.0.201410040035 (com.ifedorenko.m2e.mavendev.feature.feature.group 0.3.0.201410040035)
  Missing requirement: Maven Development Tools 0.3.0.201409160039 (com.ifedorenko.m2e.mavendev 0.3.0.201409160039) requires 'bundle org.eclipse.m2e.launching [1.6.0,2.0.0)' but it could not be found
  Cannot satisfy dependency:
    From: Maven Development Tools 0.3.0.201410040035 (com.ifedorenko.m2e.mavendev.feature.feature.group 0.3.0.201410040035)
    To: com.ifedorenko.m2e.mavendev [0.3.0.201409160039]

      

Please help how can I solve this problem. All my environment variables are set correctly as well.

+3


source to share


4 answers


Actually, I have the same problem in my environment.

In the error message, you will see that the plugin you want to install requires the org.eclipse.m2e.launching package in the next versions (1.6.0 to 2.0.0).

In fact, only the 1.5 m2 version has been released. You can install 1.6 milestone by following these instructions.



  • Help> Install New Software ...
  • Paste the following link into the Work with box: http://download.eclipse.org/technology/m2e/milestones/1.6/
  • Hit enter
  • Select all the plugins you need
  • Click "Next" and follow the instructions of the wizard
  • After this installation, re-install "Maven Development Tools"

I hope this answer helps you.

+5


source


Try installing through this update site:



http://download.eclipse.org/releases/luna/

+1


source


Use the latest Eclipse EE which has a Maven plugin embedded inside

+1


source


"The Maven development tools you are trying to install require the basic" Maven Integration for Eclipse "(m2e) already installed.

Some Eclipse downloads include m2e, but others do not.

Install m2e using "Help> Install New Software ...". Select the main Luna site to work with. m2e is located in the section "Cooperation".

+1


source







All Articles