首页 > 代码库 > Eclipse Hadoop源码阅读环境

Eclipse Hadoop源码阅读环境

一、解压hadoop src包到workspace目录
二、File->Import->Existing Maven Projects,在Root Directory处选择解压好的目录,Finish
三、等待maven把依赖包下载好后,会出现一些问题,下面是重头戏。
四、maven问题解决
(1)若发现maven依赖包找不见,找到位置后删除jar包目录,然后右击工程,Alt+F5,确认后会自动下载。不要手动下载第三方包,可能不识别
(2)报 maven-resources-plugin prior to 2.4 is not supported by m2e,
Windiow > Preferences > Maven > Errors/Warnings > Plugin executiuon not covered by lifecycle configuration. 选择Ignore。
或者快速修复,Mark goal as ignored in Eclipse build in Eclipse preferences
 
简单而有效,是我的一贯作用,喜欢看长篇大论的可以出门右转。

Eclipse Hadoop源码阅读环境