本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- zhanjia
- lzyfn123
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- johnsmith9th
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
最新文章列表
使用Eclipse构建Maven项目 (step-by-step)
目录(?)[-]
Eclipse-jee的安装
Maven的安装和配置
1 安装
2 配置
21 修改默认的本地仓库位置
22 修改默认的中央仓库镜像
Eclipse中m2eclipse插件的安装
1 插件安装
2 配置
21 设置m2eclipse插件所关联的Maven程序
maven 导入项目时 报 Unsupported IClasspathEntry kind=4 的解决方式
在用maven导入maven project 的时候,报 Unsupported IClasspathEntry kind=4 ,导致maven project 不能正常的加载。
原因:因为eclipse 使用了m2eclipse 插件,但这个插件的使用前提是不允许命令mvn eclipse:eclipse在项目上执行,如果执行过,就会抛出这个异常。
解决方法:
...
maven integration for eclipse jdk warning
在Eclipse中安装m2eclipse插件后,启动Eclipse出现警告。
警告的标题是:
maven integration for eclipse jdk warning;
我的解决办法是在Eclipse程序文件(安装文件)处有一个eclipse.ini文件,打开后如下
引用
-startup
plugins/org.eclipse.equinox.launcher_1.3 ...
m2eclipse加载remote archetype-catalog.xml时提示"Remote catalog is empty"
发现在添加remote地址时,m2eclipse插件(版本0.12.1)会出现 "Remote catalog is empty" 提示,导致找不到对应的工程模板
解决办法:
将archetype-catelog.xml保存到本地,然后在eclipse中添加为local catalog
或
直接运行命令"mvn archetype:generate -Darch ...
【转载】 Eclipse 插件Maven在使用 add dependency,找不到包,解决办法
通过右键单击pom.xml文件选择maven –> add dependency 或者是打开pom.xml文件,选择dependencies –>add 时,搜索不到依赖的jar包,解决方法如下:
1、eclipse菜单 window-> show view –> other –> Maven
2、在打开的窗口里,右键 local repositories –&g ...
Maven Integration for Eclipse vs. Maven eclipse:eclipse plugin
Maven Integration for Eclipse vs. Maven eclipse:eclipse plugin
The Maven Integration for Eclipse (m2eclipse) is an Eclipse plugin that allows execution of Maven goals and manages Maven dependencies. I ...
M2E plugin execution not covered
官方文档参见 http://wiki.eclipse.org/M2E_plugin_execution_not_covered
Eclipse升级为3.7.2,然后m2e升级为1.1或1.2后,项目报这个错误。影响到的插件为maven-antrun-plugin。按文档所示,增加了如下pom配置:
<pluginManagement>
...
转载:《myeclipse6.5安装m2eclipse方法》
原文出处:http://fableking.iteye.com/blog/1185456
原文作者:欣水寓言
声明:本人转载只为分享,如涉及商业版权纠纷,请及时与本人联系,必将立即删除,造成不便,还望见谅,谢谢。
myeclipse6.5后默认就会安装上一个maven的插件,但是这个插件功能并不完全,需要自己安装m2eclipse才好
安装方法:
•首先卸载myeclipse安 ...
Maven--安装m2eclipse插件
开发者博客:http://www.developsearch.com
安装m2eclipse插件:
Help --> Install New Software...
点Add按钮输入:
m2e
http://m2eclipse.sonatype.org/sites/m2e
然后一直下一步就可以完成下载安装
m2eclipse还提供了一组额外组件,主要是为了方便与其他工具和Subversi ...