Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install maven plugin in eclipse juno

I am trying to install maven 1.5 in eclipse unfortunately I am getting errors like:

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]
like image 460
user1632980 Avatar asked Aug 22 '14 19:08

user1632980


People also ask

Does Eclipse Juno support Maven?

This tutorial presents a step-by-step guide about how to install Maven plugin (m2e) for an existing Eclipse version (Juno 4.2 and older). NOTES:Eclipse Kepler (4.3) and newer versions already have Maven integration so you don't need to install the plug-in for this version of Eclipse.

Do I need to install Maven for Eclipse?

You can Launch Maven builds from within Eclipse. It does the dependency management for Eclipse build path based on Maven's pom. xml. It resolves Maven dependencies from the Eclipse workspace without installing to local Maven repository (requires dependency project be in same workspace).


2 Answers

EClipse juno doesnt support maven 1.5..still they have not added capability of 1.5

so try 1.4 or 1.3

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

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

MAVEN INSTALLATION

OPTION 1 :

  1. Open Eclipse IDE
  2. Click Help -> Install New Software...
  3. Click Add button at top right corner
  4. At pop up: fill up Name as "M2Eclipse" and Location as http://download.eclipse.org/technology/m2e/releases/1.4
  5. Now click OK After that installation would be started.

OPTION 2 :-

  1. Open Eclipse
  2. Go to Help -> Eclipse Marketplace
  3. Search by Maven
  4. Click "Install" button at "Maven Integration for Eclipse" section
  5. Follow the instruction step by step

After successful installation do the followings in Eclipse:

  1. Go to Window --> Preferences
  2. Observe, Maven is enlisted at left panel

Finally,

  1. Click on an existing project
  2. Select Configure -> Convert to Maven Project
like image 59
Krishnamoorthy Avatar answered Oct 02 '22 17:10

Krishnamoorthy


This is because maven 1.5 is not compatible with eclipse juno. So we need to use maven 1.4 or 1.3

Steps to install maven 1.4 is below

  1. Click Help in eclipse
  2. Install New Software
  3. Url for the location of site is "http://download.eclipse.org/technology/m2e/releases"
  4. Uncheck the checkbox "Show only the latest versions of available software" if do not uncheck the checkbox it will only latest version and do not show maven 1.4.
  5. Select m2e and slf4j of 1.4 version and click next.

Note: maven v 1.3 is compatible, correct url for juno: download.eclipse.org/technology/m2e/releases/1.3

like image 39
rajeesh Avatar answered Oct 02 '22 17:10

rajeesh