1

When I try to install EGit via the update URL or marketplace I get the following error:

Cannot complete the install because one or more required items could not be found. Software being installed: Eclipse Git Team Provider 3.2.0.201312181205-r (org.eclipse.egit.feature.group 3.2.0.201312181205-r) Missing requirement: Git Team Provider UI 3.2.0.201312181205-r (org.eclipse.egit.ui 3.2.0.201312181205-r) requires 'bundle org.eclipse.team.core [3.6.100,4.0.0)' but it could not be found Cannot satisfy dependency: From: Eclipse Git Team Provider 3.2.0.201312181205-r (org.eclipse.egit.feature.group 3.2.0.201312181205-r) To: org.eclipse.egit.ui [3.2.0.201312181205-r]

My FDT5 is up to date.

Can I somehow install the org.eclipse.team.core bundle to solve the dependency?

daniel.sedlacek
  • 8,129
  • 9
  • 46
  • 77

2 Answers2

2

I don't know what FDT 5 is, but from the error it looks like it is based on an old version of the Eclipse Platform.

EGit 3.2 requires Eclipse Platform >= 3.8.2/4.2.2, see What versions of Eclipse does EGit target? in the FAQ.

Either upgrade FDT or try installing an older version of EGit such as 2.3.1, see Where can I find older releases of EGit?.

robinst
  • 30,027
  • 10
  • 102
  • 108
2

As said, FDT ships on Eclipse Juno (4.2) on which EGit has tested to work smoothly.

You can install EGit by:

  1. Help > Install New Software
  2. Click on Available Software Sites
  3. Check in Juno (http://download.eclipse.org/releases/juno)
  4. Click OK to close
  5. From Work with select choose Juno
  6. Check in Collaboration > Eclipse EGit

We've also tested JGit to work smoothly.

Ain Tohvri
  • 2,987
  • 6
  • 32
  • 51
  • 1
    even though I don't understand what is the difference this approach worked. – daniel.sedlacek Feb 28 '14 at 15:02
  • The problem you seemed to have is that you tried to install the version of the Git bundle incompatible with the rest of the setup. It is also why FDT team provides that update site in the list of update sites as a silent recommendation that you can turn on. I'm glad it worked out! – Ain Tohvri Mar 02 '14 at 11:01