Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are m2e connectors?

Tags:

maven

m2e

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?
like image 804
Mohamed Ramadan Avatar asked Nov 16 '12 18:11

Mohamed Ramadan


People also ask

How do I install m2e connector?

Installing m2eclipse is fairly simple. Start Eclipse then go to: Help -> Install New Software… Copy this link http://download.eclipse.org/technology/m2e/releases for the latest Stable Release into Eclipse and hit Enter.

What does Maven dependency plugin do?

The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location.


1 Answers

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.

like image 141
user2189998 Avatar answered Sep 19 '22 15:09

user2189998