11

I want to know what an m2e connector is. I didn't find much on the internet describing them except this page:

http://objectledge.org/confluence/display/TOOLS/M2E+Connectors

So my questions are:

  • Is it a plugin like any Eclipse plugin?
  • What it can be used for?
  • Are there any pages explaining how I can use it?
hopper
  • 13,060
  • 7
  • 49
  • 53
Mohamed Ramadan
  • 475
  • 2
  • 7
  • 15

1 Answers1

7

Yes it is an eclipse plugin. It act as a bridge between one maven plugin and eclipse. Basically it is used for three things:

  • configure eclipse project according to the pom configuration,
  • automatically refresh resources modify by your build,
  • provide incremental build (if done correctly...)

For the common plugins,you would install it when importing maven projects, or via quick fixes.

Some documentation, though it is more oriented to m2e connectors' development.

Jakub Bochenski
  • 3,113
  • 4
  • 33
  • 61
user2189998
  • 718
  • 6
  • 10
  • I am unable to import a maven project from a public git repository in bitbucket. There are no choices for scm in the import project from maven scm option. Do I need to install a m2e connector to bitbucket ? – MasterJoe Feb 27 '20 at 03:48