How to add M2_REPO classpath variable to Eclipse IDE
Normally, when you use Maven command mvn eclipse:eclipse to convert existing Java project to support Eclipse project, Maven will create the entire dependency classpath by using the M2_REPO variable, which is not defined in Eclipse by default.
Nothing special, M2_REPO is just a normal “classpath variable” in Eclipse to find your local Maven repository.
Here, we show you two ways to add M2_REPO classpath variable into Eclipse IDE.
1. Add M2_REPO Manually
Define and add M2_REPO classpath variable manually into Eclipse IDE. Follow below steps :
- Eclipse IDE, menu bar
- Select Window > Preferences
- Select Java > Build Path > Classpath Variables
- Click on the new button > defined a new M2_REPO variable and point it to your local Maven repository
- Done.
2. Add M2_REPO Automatically – eclipse:configure-workspace
Alternatively, you can define and add M2_REPO via Maven command “eclipse:configure-workspace“.
mvn -Declipse.workspace="your Eclipse Workspace" eclipse:configure-workspaceSee an example :
C:\>mvn -Declipse.workspace="C:\Users\mkyong\workspace" eclipse:configure-workspace [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'eclipse'. [INFO] ------------------------------------------------------------------------ [INFO] Building Maven Default Project [INFO] task-segment: [eclipse:configure-workspace] (aggregator-style) [INFO] ------------------------------------------------------------------------ [INFO] [eclipse:configure-workspace {execution: default-cli}] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1 second [INFO] Finished at: Thu Apr 14 20:45:17 SGT 2011 [INFO] Final Memory: 9M/112M [INFO] ------------------------------------------------------------------------
Done.
Verify M2_REPO is Added
Review classpath variable to verify that the M2_REPOis added into Eclipse IDE.

You need to add this M2_REPO classpath variable once only, and this variable is shared among all of your Eclipse’s workspace.
The old “
eclipse:add-maven-repo” command is deprecated , and not working anymore. Uses “eclipse:configure-workspace” instead.
Hi mkyong
I have already installed maven and it had by default added .m2 directory in c: drive in the Document and Settings…. folders
but as now the link to change the maven repository path is coming hidden in eclipse
Can i still change it by any other means ???
Please revert me back soon
In Maven, change the setting.xml like this : http://www.mkyong.com/maven/where-is-maven-local-repository/
[...] Tomcat “mvn tomcat:deploy” to deploy WAR file to Tomcat.Maven FAQSome common Maven FAQs.Add M2_REPO classpath variable to Eclipse IDE To make your Maven project support Eclipse IDE, you need to add this M2_REPO classpath variable.How [...]
[...] Now the .classpath file is built by reading M2_REPO classpath variable, which is not defined in eclipse by default. Check here to see how to add M2_REPO classpath variable to eclipse [...]
[...] Now the .classpath file is built by reading M2_REPO classpath varialbe, which eclipse is not defined in eclipse by default. Check here to see how to add M2_REPO classpath variable to eclipse [...]