适用于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已经获取到路径,但不属于判断的资源类型,返回为空。 所以只需要做如下处理即可。

  1. /** 
  2.              * dependency jar folder 
  3.              */ 
  4.             String fullname = sel.toString(); 
  5.             int firstIndexOfBlank = fullname.indexOf(" "); 
  6.             String fullJarPath = fullname.substring(0, firstIndexOfBlank); 
  7.             if(!"".equals(fullJarPath)){ 
  8.                 return fullJarPath; 
  9.             } 

3、打包发布

在eclipse中开发plugin时,可以借助eclipse ide生成build.xml,再执行ant build.update.jar即可。

关于eclipse中plugin的生成发布,参考:http://tianya23.blog.51cto.com/1081650/611994