在配置完maven的环境变量后
可以正常查看自己的maven版本,则maven是没有问题的。
之后,在eclipse里面配置自己的maven
引入自己的setting.xml文件
setting.xml中配置
<mirror>
<id>mirrorId</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
注意: <mirrorOf>central</mirrorOf>一定要这么写,id和name可以自定义。
之后,在eclipse中打开maven视图
查看Globel Repositories
这时,会有一个自带的central,大家也知道为什么要mirrorof为central了吧。
在需要导入jar包的项目右键
点击OK即可