本文共 603 字,大约阅读时间需要 2 分钟。
首先要在Myeclipse中进行maven的设置
1.
2.
这里可以选择对应的内存大小
3.
4.
至此MyEclipse对Maven的支持设置完毕
下面我们就在MyEclipse中创建一个maven标准的web工程:
6.
如果建完项目后,出现错误解决方法如下:
右击web工程--->属性或者build path---> build path--->Libraries--->Add Libraries--->MyEclipse Server Library--->tomcat
点击添加,完成,错误没有了。
如果还有这种错误:Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5
解决方法是进入C:\Users\alone\.m2\repository\org.apache.maven.plugins下面删除以.lastUpdated结尾的文件即可。
至此Maven项目创建完毕