适用于eclipse4.x.x,本人环境为eclipse4.2.0
1、openextern
官网:http://code.google.com/p/openextern/
源代码:svn checkout http://openextern.googlecode.com/svn/trunk/ openextern-read-only
问题:无法打开maven、jar等外部jar包依赖的问题
2、问题解决
导入eclipse中,进行调试;发现能够获取路径;在BaseOpenAction.java中,发现方法public String getSelectedFolderPath(ISelection selection)的ISelection已经获取到路径,但不属于判断的资源类型,返回为空。 所以只需要做如下处理即可。
- /**
- * dependency jar folder
- */
- String fullname = sel.toString();
- int firstIndexOfBlank = fullname.indexOf(" ");
- String fullJarPath = fullname.substring(0, firstIndexOfBlank);
- if(!"".equals(fullJarPath)){
- return fullJarPath;
- }
3、打包发布
在eclipse中开发plugin时,可以借助eclipse ide生成build.xml,再执行ant build.update.jar即可。
关于eclipse中plugin的生成发布,参考:http://tianya23.blog.51cto.com/1081650/611994