2008年12月19日星期五

maven2创建一个eclipse工程,设置M2_REPO

用maven创建一个支持eclipse的工程非常简单,在mvn的项目目录下:
mvn eclipse:eclipse
即可。

再打开eclipse->import->General:Existing Projects into Workspace->包含该工程的目录,eclipse会自动搜寻到刚刚创建的eclipse工程。

导入工程后会发现eclipse报"找不到M2_REPO"的错误,其实这是个环境变量,就是指向你的本地库。在linux和windows下都是$HOME/.m2/repository

把该变量加入eclipse,方法为:
Window -> Preferences -> Java -> Build Path -> Classpath Variables
-> New,Name输入M2_REPO,Path输入/home/名用户/.m2/repository(以我的为例)。确认后错误消失。

没有评论: