`
hizhangqi
  • 浏览: 86494 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

myeclipse10优化管理

 
阅读更多
http://blog.csdn.net/shimiso/article/details/7061000


一.Myeclipse10下载与破解

Genuitec公司发布了MyEclipse 10,一款Genuitec旗下的商业化Eclipse集成开发工具的升级版本。MyEclipse 10基于Eclipse Indigo构建,为Java和JavaEE项目提供了Maven3的支持。本次发布的版本中还加入了对JaveEE 6、HTML5、JPA2和JSF 2的支持。版本号10是为了庆祝即将到来的Eclipse的10周年诞辰(MyEclipse的首次发布是在8年前)。

我现在用的还是6.5的版本,6.5的版本是我觉得最好用的一个版本。 我装上了,还没感受到有哪些好用,就是感觉体积庞大,和IBM 的WID一样,是个多面手,啥事都能干,其实经常能使用的也就其中那么几个功能,要是能像插件一样,即插即用就好了。

MyEclipse 10使用最高级的桌面和Web开发技术,包括 HTML5 和 Java EE 6,支持 JPA 2.0、JSF 2.0 、Eclipselink 2.1 以及 OpenJPA 2.0. 而对 IBM WebSphere 用户来说,MyEclipse Blue 支持最新版本的 WebSphere Portal Server 7.0、WebSphere 8 以及以前的版本,无缝的支持 IBM DB2 数据库 。 MyEclipse 是一个十分优秀的用于开发Java, J2EE的 Eclipse 插件集合,MyEclipse的功能非常强大,支持也十分广泛,尤其是对各种开元产品的支持十分不错。MyEclipse目前支持Java Servlet,AJAX, JSP, JSF, Struts,Spring, Hibernate,EJB3,JDBC数据库链接工具等多项功能。可以说MyEclipse几乎囊括了目前所有主流开元产品的专属eclipse开发工 具。

以下是下载与破解链接(右击迅雷下载):

Myeclipse10正式版下载


Myeclipse10 blue 下载


Myeclipse9/10破解包(内附详细破解步骤)


另附Myeclipse8/9/10 Verycd下载出处:Myeclipse_Verycd下载

二.Myeclipse10修改字体


MyEclipse10是基于Eclipse3.7内核,但在Eclipse的Preferences-〉general-〉Appearance->Colors and Fonts 中并没有找到Courier New字体,它采用的是Consolas字体,中文看着非常小非常别扭,在Windows7下,系统自带虽然有Courier New字体,但是并没有激活显示,需要手动激活,才能在软件中使用

激活方法如下:
在win7的控制面板->字体,找到Courier New,右键,显示。然后在eclipse的fonts列表中就可以选择了。上两张图








三.Myeclipse10插件安装


说到插件,myeclipse自8.X开始,插件安装就变得巨难用,通常最好还是用离线安装,在线安装很可能出问题,下面仅以SVN安装为例,其他诸如ADT15,Aptana等都可采用

1.首先下载SVN包:svn-1.6
2.解压SVN包,然后找到其中的两个文件夹:features 和 plugins
3.随意建一个文件夹(位置和名称自己定就好了,我的是E:\myEclipsePlugin\svn),然后把第二步的解压好的features 和 plugins放到这个文件夹下
4.找到myeclipse的安装目录,下面有一个configuration\org.eclipse.equinox.simpleconfigurator\bundles.info 文件。现在需要做的就是在该文件内添加的东西
5.添加的内容用下面的类生成:


[java] view plaincopyprint?
01.<span style="font-size:13px;">import java.io.File;    
02.import java.util.ArrayList;    
03.import java.util.List;    
04./**  
05. * MyEclipse9 插件配置代码生成器  
06. *  
07. *  
08. */   
09.public class PluginConfigCreator    
10.{    
11.    public PluginConfigCreator()    
12.    {    
13.    }    
14.    public void print(String path)    
15.    {    
16.        List<String> list = getFileList(path);    
17.        if (list == null)    
18.        {    
19.            return;    
20.        }    
21.        int length = list.size();    
22.        for (int i = 0; i < length; i++)    
23.        {    
24.            String result = "";    
25.            String thePath = getFormatPath(getString(list.get(i)));    
26.            File file = new File(thePath);    
27.            if (file.isDirectory())    
28.            {    
29.                String fileName = file.getName();    
30.                if (fileName.indexOf("_") < 0)    
31.                {    
32.                    print(thePath);    
33.                    continue;    
34.                }    
35.                String[] filenames = fileName.split("_");    
36.                String filename1 = filenames[0];    
37.                String filename2 = filenames[1];    
38.                result = filename1 + "," + filename2 + ",file:/" + path + "/"   
39.                        + fileName + "\\,4,false";    
40.                System.out.println(result);    
41.            } else if (file.isFile())    
42.            {    
43.                String fileName = file.getName();    
44.                if (fileName.indexOf("_") < 0)    
45.                {    
46.                    continue;    
47.                }    
48.                int last = fileName.lastIndexOf("_");// 最后一个下划线的位置     
49.                String filename1 = fileName.substring(0, last);    
50.                String filename2 = fileName.substring(last + 1, fileName    
51.                        .length() - 4);    
52.                result = filename1 + "," + filename2 + ",file:/" + path + "/"   
53.                        + fileName + ",4,false";    
54.                System.out.println(result);    
55.            }    
56.        }    
57.    }    
58.    public List<String> getFileList(String path)    
59.    {    
60.        path = getFormatPath(path);    
61.        path = path + "/";    
62.        File filePath = new File(path);    
63.        if (!filePath.isDirectory())    
64.        {    
65.            return null;    
66.        }    
67.        String[] filelist = filePath.list();    
68.        List<String> filelistFilter = new ArrayList<String>();    
69.        for (int i = 0; i < filelist.length; i++)    
70.        {    
71.            String tempfilename = getFormatPath(path + filelist[i]);    
72.            filelistFilter.add(tempfilename);    
73.        }    
74.        return filelistFilter;    
75.    }    
76.    public String getString(Object object)    
77.    {    
78.        if (object == null)    
79.        {    
80.            return "";    
81.        }    
82.        return String.valueOf(object);    
83.    }    
84.    public String getFormatPath(String path)    
85.    {    
86.        path = path.replaceAll("\\\\", "/");    
87.        path = path.replaceAll("//", "/");    
88.        return path;    
89.    }    
90.    public static void main(String[] args)    
91.    {    
92.        /*你的SVN的features 和 plugins复制后放的目录*/   
93.            String plugin = "E:/myEclipsePlugin/svn/";    
94.        new PluginConfigCreator().print(plugin);    
95.    }    
96.}  </span> 
<span style="font-size:13px;">import java.io.File;  
import java.util.ArrayList;  
import java.util.List;  
/** 
* MyEclipse9 插件配置代码生成器 


*/ 
public class PluginConfigCreator  
{  
    public PluginConfigCreator()  
    {  
    }  
    public void print(String path)  
    {  
        List<String> list = getFileList(path);  
        if (list == null)  
        {  
            return;  
        }  
        int length = list.size();  
        for (int i = 0; i < length; i++)  
        {  
            String result = "";  
            String thePath = getFormatPath(getString(list.get(i)));  
            File file = new File(thePath);  
            if (file.isDirectory())  
            {  
                String fileName = file.getName();  
                if (fileName.indexOf("_") < 0)  
                {  
                    print(thePath);  
                    continue;  
                }  
                String[] filenames = fileName.split("_");  
                String filename1 = filenames[0];  
                String filename2 = filenames[1];  
                result = filename1 + "," + filename2 + ",file:/" + path + "/" 
                        + fileName + "\\,4,false";  
                System.out.println(result);  
            } else if (file.isFile())  
            {  
                String fileName = file.getName();  
                if (fileName.indexOf("_") < 0)  
                {  
                    continue;  
                }  
                int last = fileName.lastIndexOf("_");// 最后一个下划线的位置  
                String filename1 = fileName.substring(0, last);  
                String filename2 = fileName.substring(last + 1, fileName  
                        .length() - 4);  
                result = filename1 + "," + filename2 + ",file:/" + path + "/" 
                        + fileName + ",4,false";  
                System.out.println(result);  
            }  
        }  
    }  
    public List<String> getFileList(String path)  
    {  
        path = getFormatPath(path);  
        path = path + "/";  
        File filePath = new File(path);  
        if (!filePath.isDirectory())  
        {  
            return null;  
        }  
        String[] filelist = filePath.list();  
        List<String> filelistFilter = new ArrayList<String>();  
        for (int i = 0; i < filelist.length; i++)  
        {  
            String tempfilename = getFormatPath(path + filelist[i]);  
            filelistFilter.add(tempfilename);  
        }  
        return filelistFilter;  
    }  
    public String getString(Object object)  
    {  
        if (object == null)  
        {  
            return "";  
        }  
        return String.valueOf(object);  
    }  
    public String getFormatPath(String path)  
    {  
        path = path.replaceAll("\\\\", "/");  
        path = path.replaceAll("//", "/");  
        return path;  
    }  
    public static void main(String[] args)  
    {  
        /*你的SVN的features 和 plugins复制后放的目录*/ 
            String plugin = "E:/myEclipsePlugin/svn/";  
        new PluginConfigCreator().print(plugin);  
    }  
}  </span>6.把以上生成的字符串(一大堆)添加到第四步bundles.info文件的后面,然后重启myeclipse即可。





此外Adobe Flash Builder 4.6也完美支持Myeclipse10,只是插件在安装的时候不是采用以上方式,根据官方英文文档说明,

首先要将Adobe Flash Builder 4.6安装完成,

然后进安装目录~\Adobe\Adobe Flash Builder 4.6\utilities运行Adobe Flash Builder 4.6 Plug-in Utility.exe,


最后根据安装向导设置插件安装到myeclipse10的目录~\Genuitec\MyEclipse 10,必须确保该目录下包含dropins文件

如此即可完成最新的Adobe Flash Builder 4.6插件的安装,最后启动myeclipse10,界面也随之变成中文,但有时候也会有出问题,此时进入到~\Genuitec\MyEclipse 10\Uninstall Adobe Flash Builder 4.6 Plug-in目录,运行Uninstall Adobe Flash Builder 4.6 Plug-in.exe卸载插件,重新安装,第二次必定成功,myeclipse10对插件的兼容性没有eclipse的好,千万不可尝试按eclipse的配置去暴力修改里面的参数,否则极有可能再也起不来了!






四.Myeclipse10优化


最后谈谈如何优化Myeclipse10


1、window-preferences-MyEclipse Enterprise Workbench-Maven4MyEclipse-Maven,将Maven JDK改为电脑上安装的JDK,即不使用myeclipse提高的JDK
登记add按钮,选择你的电脑上的JDK即可(注意:不是JRE,我的值为:Java6.014)

2、window-preferences-MyEclipse Enterprise Workbench-Matisse4Myeclipse/Swing,将Design-time information(dt.jar) location 改用电脑安装的JDK的dt.jar
(即不使用myeclipse提供的dt.jar,我的值为:C:\Java6.014\lib\dt.jar)

经过以上的优化,myeclipse的启动时间可以减少2/3,Tomcat的启动速度可以减少1/2(视具体情况而定)

第一步: 取消自动validation
validation有一堆,什么xml、jsp、jsf、js等等,我们没有必要全部都去自动校验一下,只是需要的时候才会手工校验一下!
取消方法:
windows–>perferences–>myeclipse–>validation
除开Manual下面的复选框全部选中之外,其他全部不选
手工验证方法:
在要验证的文件上,单击鼠标右键–>myeclipse–>run validation

第二步:取消Eclipse拼写检查
1、拼写检查会给我们带来不少的麻烦,我们的方法命名都会是单词的缩写,他也会提示有错,所以最好去掉,没有多大的用处
windows–>perferences–>general–>validation->editors->Text Editors->spelling

第三步:取消myeclipse的启动项
myeclipse会有很多的启动项,而其中很多我们都用不着,或者只用一两个,取消前面不用的就可以
windows–>perferences–>general–>startup and shutdown  (详见底端介绍)

第四步:更改jsp默认打开的方式
安装了myeclipse后,编辑jsp页面,会打开他的编辑页面,同时也有预览页面,速度很慢,不适合开发。所以更改之windows–>perferences–>general–>editors->file associations
在下方选择一种编辑器,然后点击左边的default按钮

第五步:更改代码提示快捷键(不建议使用增强提示,使用Ctrl+/在自己需要的时候提示更佳)
现在的代码提示快捷键,默认为ctrl+space,而我们输入法切换也是,所以会有冲突。谁叫myeclipse是外国人做的呢。。根本不需要切换输入法.
windows–>perferences–>general–>Keys
更改 content assist 为 alt+/
同时由于alt+/已经被word completion占用,所以得同时修改word completion的快捷键值
好了,现在的速度及方便性是不是提高了。

第六步: 更改内存使用文件
1、打开 myeclipse.ini


[html] view plaincopyprint?
01.-vmargs 
02.-Xms256m 
03.-Xmx1024m    
04.-XX:PermSize=128M 
05.-XX:MaxPermSize=256M 
-vmargs
-Xms256m
-Xmx1024m  
-XX:PermSize=128M
-XX:MaxPermSize=256M

把下面的那个 -XX:MaxPermSize 调大,比如 -XX:MaxPermSize=512M,再把 -XX:PermSize 调成跟 -XX:MaxPermSize一样大
原因:大家一定对这个画面很熟悉吧:

几乎每次 eclipse 卡到当都是因为这个非堆内存不足造成的,把最大跟最小调成一样是因为不让 myeclipse 频繁的换内存区域大小
注意:XX:MaxPermSize 和 Xmx 的大小之和不能超过你的电脑内存大小
以下是有关内存的一些知识扩展:

1.堆(Heap)和非堆(Non-heap)内存
按照官方的说法:“Java 虚拟机具有一个堆,堆是运行时数据区域,所有类实例和数组的内存均从此处分配。堆是在 Java 虚拟机启动时创建的。”“在JVM中堆之外的内存称为非堆内存(Non-heap memory)”。可以看出JVM主要管理两种类型的内存:堆和非堆。简单来说堆就是Java代码可及的内存,是留给开发人员使用的;非堆就是JVM留给自己用的,所以方法区、JVM内部处理或优化所需的内存(如JIT编译后的代码缓存)、每个类结构(如运行时常数池、字段和方法数据)以及方法和构造方法的代码都在非堆内存中。
2.堆内存分配
JVM初始分配的内存由-Xms指定,默认是物理内存的1/64;JVM最大分配的内存由-Xmx指定,默认是物理内存的1/4。默认空余堆内存小于40%时,JVM就会增大堆直到-Xmx的最大限制;空余堆内存大于70%时,JVM会减少堆直到-Xms的最小限制。因此服务器一般设置-Xms、-Xmx相等以避免在每次GC 后调整堆的大小。
3.非堆内存分配
JVM使用-XX:PermSize设置非堆内存初始值,默认是物理内存的1/64;由XX:MaxPermSize设置最大非堆内存的大小,默认是物理内存的1/4。
4.JVM内存限制(最大值)
首先JVM内存限制于实际的最大物理内存,假设物理内存无限大的话,JVM内存的最大值跟操作系统有很大的关系。简单的说就32位处理器虽然可控内存空间有4GB,但是具体的操作系统会给一个限制,这个限制一般是2GB-3GB(一般来说Windows系统下为1.5G-2G,Linux系统下为2G-3G),而64bit以上的处理器就不会有限制了。
举例说明含义:
-Xms128m 表示JVM Heap(堆内存)最小尺寸128MB,初始分配
-Xmx512m 表示JVM Heap(堆内存)最大允许的尺寸256MB,按需分配。
说明:如果-Xmx不指定或者指定偏小,应用可能会导致java.lang.OutOfMemory错误,此错误来自JVM不是Throwable的,无法用try...catch捕捉。
PermSize和MaxPermSize指明虚拟机为java永久生成对象(Permanate generation)如,class对象、方法对象这些可反射(reflective)对象分配内存限制,这些内存不包括在Heap(堆内存)区之中。
-XX:PermSize=64MB 最小尺寸,初始分配
-XX:MaxPermSize=256MB 最大允许分配尺寸,按需分配
过小会导致:java.lang.OutOfMemoryError: PermGen space
MaxPermSize缺省值和-server -client选项相关。-server选项下默认MaxPermSize为64m  -client选项下默认MaxPermSize为32m
PS:不同厂家的jdk垃圾回收算法不一样。在sun的jdk下,Xms和Xmx设置一样,可以减轻伸缩堆大小带来的压力,但在ibm的jdk下面,设置为一样会增大堆碎片产生的几率。




第七步: 修改Struts-config.xml文件打开错误
有时点击myeclipse里的struts的xml配置文件,会报错:
Error opening the editorUnable to open the editor ,unknow the editor id…..
把这个窗口关闭后才出正确的xml文件显示,这个我们这样改:
windows–>perferences–>general–>editors->file associations选择*.xml,选择myeclipse xml editor点default,ok

第八步: 取消自动验证,该成手动验证
windows-->perferences-->myeclipse-->validation
将Build下全部勾取消,保留Manual(手动) 如果你需要验证某个文件的时候,我们可以单独去验证它。方法是,在需要验证的文件上( 右键 -> MyEclipse -> Run Validation  

第九步: 取消Maven更新(启动更新)
Window > Preferences > Myeclipse Enterprise Workbench > Maven4Myeclipse > Maven>禁用Download repository index updates on startup

import java.io.File;
import java.util.ArrayList;
import java.util.List;

/**
 * MyEclipse9 插件配置代码生成器
 * 
 * 
 */
public class PluginConfigCreator {
	public PluginConfigCreator() {
	}

	public void print(String path) {
		List<String> list = getFileList(path);
		if (list == null) {
			return;
		}
		int length = list.size();
		for (int i = 0; i < length; i++) {
			String result = "";
			String thePath = getFormatPath(getString(list.get(i)));
			File file = new File(thePath);
			if (file.isDirectory()) {
				String fileName = file.getName();
				if (fileName.indexOf("_") < 0) {
					print(thePath);
					continue;
				}
				String[] filenames = fileName.split("_");
				String filename1 = filenames[0];
				String filename2 = filenames[1];
				result = filename1 + "," + filename2 + ",file:/" + path + "/"
						+ fileName + "\\,4,false";
				System.out.println(result);
			} else if (file.isFile()) {
				String fileName = file.getName();
				if (fileName.indexOf("_") < 0) {
					continue;
				}
				int last = fileName.lastIndexOf("_");// 最后一个下划线的位置
				String filename1 = fileName.substring(0, last);
				String filename2 = fileName.substring(last + 1,
						fileName.length() - 4);
				result = filename1 + "," + filename2 + ",file:/" + path + "/"
						+ fileName + ",4,false";
				System.out.println(result);
			}
		}
	}

	public List<String> getFileList(String path) {
		path = getFormatPath(path);
		path = path + "/";
		File filePath = new File(path);
		if (!filePath.isDirectory()) {
			return null;
		}
		String[] filelist = filePath.list();
		List<String> filelistFilter = new ArrayList<String>();
		for (int i = 0; i < filelist.length; i++) {
			String tempfilename = getFormatPath(path + filelist[i]);
			filelistFilter.add(tempfilename);
		}
		return filelistFilter;
	}

	public String getString(Object object) {
		if (object == null) {
			return "";
		}
		return String.valueOf(object);
	}

	public String getFormatPath(String path) {
		path = path.replaceAll("\\\\", "/");
		path = path.replaceAll("//", "/");
		return path;
	}

	public static void main(String[] args) {
		/* 你的SVN的features 和 plugins复制后放的目录 */
		// String plugin = "D:/Program Files/Genuitec/MyPlugins/svn/1.6";
		String plugin = "D:/Program Files/Genuitec/MyPlugins/svn/1.6";
		// String plugin =
		// "D:/Program Files/Genuitec/MyPlugins/WindowsBuilder/eclipse3.7";
		// String plugin = "D:/Program Files/Genuitec/MyPlugins/fatjar";
		// String plugin = "D:/Program Files/Genuitec/MyPlugins/ADT";
		// String plugin = "D:/Program Files/Genuitec/MyPlugins/apata";
		new PluginConfigCreator().print(plugin);
	}
}


#encoding=UTF-8
#version=1
ca.ecliptical.emf.xpath,1.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/ca.ecliptical.emf.xpath_1.0.0.me201003052220.jar,4,false
ch.qos.logback.classic,0.9.27.v20110224-1110,file:/D:/Program%20Files/MyEclipse/Common/plugins/ch.qos.logback.classic_0.9.27.v20110224-1110.jar,4,false
ch.qos.logback.core,0.9.27.v20110224-1110,file:/D:/Program%20Files/MyEclipse/Common/plugins/ch.qos.logback.core_0.9.27.v20110224-1110.jar,4,false
ch.qos.logback.slf4j,0.9.27.v20110224-1110,file:/D:/Program%20Files/MyEclipse/Common/plugins/ch.qos.logback.slf4j_0.9.27.v20110224-1110.jar,4,false
com.caucho.hessian,3.2.0.0,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.caucho.hessian_3.2.0.0.jar,4,false
com.genuitec.custom.popup,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.custom.popup_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.aspphp.core,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.aspphp.core_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.aspphp.ui,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.aspphp.ui_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.ast.deploy.core,10.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.ast.deploy.core_10.0.0.me201110311918/,4,false
com.genuitec.eclipse.browser,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.browser_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.core,10.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.core_10.0.0.me201110311918.jar,4,false
com.genuitec.eclipse.core.common,10.0.0.me201110301321,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.core.common_10.0.0.me201110301321.jar,4,false
com.genuitec.eclipse.core.common.platform,10.0.0.me201110301321,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.core.common.platform_10.0.0.me201110301321.jar,4,false
com.genuitec.eclipse.cross.easystruts.eclipse,10.0.0.me201108151727,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.cross.easystruts.eclipse_10.0.0.me201108151727.jar,4,false
com.genuitec.eclipse.dashboard,9.0.0.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.dashboard_9.0.0.me201109222040.jar,4,false
com.genuitec.eclipse.dehory,9.0.0.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.dehory_9.0.0.me201110171954.jar,4,false
com.genuitec.eclipse.derby,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.derby_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.desktop,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.desktop_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.dtd,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.dtd_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.core,9.0.0.me201110112108,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.core_9.0.0.me201110112108/,4,false
com.genuitec.eclipse.easie.geronimo1,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.geronimo1_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.geronimo2,9.0.0.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.geronimo2_9.0.0.me201110171954.jar,4,false
com.genuitec.eclipse.easie.jboss,10.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jboss_10.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jboss2,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jboss2_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jboss3,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jboss3_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jboss4,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jboss4_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jboss5,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jboss5_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jboss6,9.0.0.me201109051559,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jboss6_9.0.0.me201109051559/,4,false
com.genuitec.eclipse.easie.jboss7,10.0.0.me201108171919,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jboss7_10.0.0.me201108171919/,4,false
com.genuitec.eclipse.easie.jetty,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jetty_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jetty4,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jetty4_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jetty5,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jetty5_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jetty6,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jetty6_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jetty7,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jetty7_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.jonas,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jonas_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jonas3,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jonas3_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jonas4,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jonas4_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jonas5,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jonas5_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.jrun,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jrun_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.jrun4,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.jrun4_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.oracle,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.oracle_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.oracle10,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.oracle10_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.oracle9,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.oracle9_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.orion1,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.orion1_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.orion2,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.orion2_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.resin,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.resin_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.resin2,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.resin2_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.resin3,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.resin3_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.resin4,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.resin4_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.sun,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sun_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.sun8,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sun8_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.sun81,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sun81_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.sun9,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sun9_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.sun91,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sun91_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.sunglassfish,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sunglassfish_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.sunglassfish2,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sunglassfish2_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.sunglassfish3,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sunglassfish3_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.sunglassfishv3final,9.0.0.me201108301958,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sunglassfishv3final_9.0.0.me201108301958/,4,false
com.genuitec.eclipse.easie.sunwebserver,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.sunwebserver_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.tcserver,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tcserver_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.tcserver6,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tcserver6_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.tomcat,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tomcat_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.tomcat.myeclipse,9.0.0.me201109141806,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tomcat.myeclipse_9.0.0.me201109141806/,4,false
com.genuitec.eclipse.easie.tomcat4,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tomcat4_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.tomcat5,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tomcat5_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.tomcat6,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tomcat6_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.tomcat7,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.tomcat7_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.weblogic,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.weblogic_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.weblogic10,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.weblogic10_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.weblogic6,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.weblogic6_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.weblogic7,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.weblogic7_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.weblogic8,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.weblogic8_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.weblogic9,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.weblogic9_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.websphere,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.websphere_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.websphere.wasce,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.websphere.wasce_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.easie.websphere5,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.websphere5_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.websphere6,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.websphere6_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.easie.websphere61,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.easie.websphere61_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.examples,9.0.0.me201012172208,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.examples_9.0.0.me201012172208.jar,4,false
com.genuitec.eclipse.export.wizard,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.export.wizard_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.fileview,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.fileview_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.hibernate,9.0.0.me201110112108,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.hibernate_9.0.0.me201110112108.jar,4,false
com.genuitec.eclipse.icefaces,9.0.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.icefaces_9.0.1.me201108091322/,4,false
com.genuitec.eclipse.icefaces.doc,9.0.1.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.icefaces.doc_9.0.1.me201110311918.jar,4,false
com.genuitec.eclipse.imageeditor,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.imageeditor_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.integration,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.integration_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.j2eedt.core,10.0.0.me201110301321,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.j2eedt.core_10.0.0.me201110301321/,4,false
com.genuitec.eclipse.javascript.iedebugger,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.javascript.iedebugger_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.javascript.ielaunching,8.5.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.javascript.ielaunching_8.5.0.me201012090051.jar,4,false
com.genuitec.eclipse.jniwrapper,9.0.0.me201105051700,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.jniwrapper_9.0.0.me201105051700.jar,4,false
com.genuitec.eclipse.jsf,10.0.0.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.jsf_10.0.0.me201110171954.jar,4,false
com.genuitec.eclipse.jsf.designer,9.0.0.me201109191820,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.jsf.designer_9.0.0.me201109191820/,4,false
com.genuitec.eclipse.lib.hibernate33,9.0.0.me201101171005,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.lib.hibernate33_9.0.0.me201101171005.jar,4,false
com.genuitec.eclipse.lib.jpa2,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.lib.jpa2_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.lib.spring2,9.0.0.me201012172208,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.lib.spring2_9.0.0.me201012172208.jar,4,false
com.genuitec.eclipse.lib.spring3,9.0.0.me201102240211,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.lib.spring3_9.0.0.me201102240211.jar,4,false
com.genuitec.eclipse.lib.struts2,9.0.0.me201105051700,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.lib.struts2_9.0.0.me201105051700.jar,4,false
com.genuitec.eclipse.maven,10.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.maven_10.0.0.me201110311918.jar,4,false
com.genuitec.eclipse.memory,9.0.0.me201106071109,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.memory_9.0.0.me201106071109.jar,4,false
com.genuitec.eclipse.modeling.core,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.modeling.core_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.modeling.core.layout,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.modeling.core.layout_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.persistence.jpa,10.0.0.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.persistence.jpa_10.0.0.me201109222040.jar,4,false
com.genuitec.eclipse.portlet,9.0.0.me201106082305,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.portlet_9.0.0.me201106082305.jar,4,false
com.genuitec.eclipse.reporting,10.0.0.me201108151727,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.reporting_10.0.0.me201108151727.jar,4,false
com.genuitec.eclipse.reporting.branding,9.0.0.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.reporting.branding_9.0.0.me201110171954.jar,4,false
com.genuitec.eclipse.reporting.oda,9.0.0.me201103140131,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.reporting.oda_9.0.0.me201103140131.jar,4,false
com.genuitec.eclipse.reporting.oda.ui,10.0.0.me201109111558,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.reporting.oda.ui_10.0.0.me201109111558.jar,4,false
com.genuitec.eclipse.springframework,10.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.springframework_10.0.0.me201108091322/,4,false
com.genuitec.eclipse.springhibernate,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.springhibernate_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.sqlexplorer,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.sqlexplorer_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.sqlexplorer.mssql,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.sqlexplorer.mssql_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.sqlexplorer.mysql,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.sqlexplorer.mysql_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.sqlexplorer.oracle,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.sqlexplorer.oracle_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.struts,10.0.0.me201108151727,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.struts_10.0.0.me201108151727.jar,4,false
com.genuitec.eclipse.struts2,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.struts2_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.templates,9.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.templates_9.0.0.me201012090051.jar,4,false
com.genuitec.eclipse.uml,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.uml_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.uml2.core,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.uml2.core_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.uml2.ui,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.uml2.ui_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.visualvm,9.0.0.me201109141806,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.visualvm_9.0.0.me201109141806.jar,4,false
com.genuitec.eclipse.visualvm.binary,9.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.visualvm.binary_9.0.0.me201012090051/,4,false
com.genuitec.eclipse.visualvm.server,9.0.0.me201012172208,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.visualvm.server_9.0.0.me201012172208.jar,4,false
com.genuitec.eclipse.wdt.jsp.debug,10.0.0.me201109291849,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.wdt.jsp.debug_10.0.0.me201109291849/,4,false
com.genuitec.eclipse.web.imagepreviewer,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.web.imagepreviewer_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.webdesigner3,9.0.0.me201109141806,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.webdesigner3_9.0.0.me201109141806.jar,4,false
com.genuitec.eclipse.wizards,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar,4,false
com.genuitec.eclipse.ws,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.ws_9.0.0.me201108091322/,4,false
com.genuitec.eclipse.ws.xfire,9.0.0.me201109130910,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.eclipse.ws.xfire_9.0.0.me201109130910/,4,false
com.genuitec.javascript.debug,10.0.0.me201109141806,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.javascript.debug_10.0.0.me201109141806.jar,4,false
com.genuitec.javascript.debug.mozilla,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.javascript.debug.mozilla_9.0.0.me201108091322.jar,4,false
com.genuitec.jboss.ide.eclipse.apache.xalan,9.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.jboss.ide.eclipse.apache.xalan_9.0.0.me201012090051.jar,4,false
com.genuitec.jboss.ide.eclipse.core,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.jboss.ide.eclipse.core_9.0.0.me201108091322.jar,4,false
com.genuitec.jboss.ide.eclipse.xdoclet.assist,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.jboss.ide.eclipse.xdoclet.assist_9.0.0.me201108091322.jar,4,false
com.genuitec.jboss.ide.eclipse.xdoclet.core,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.jboss.ide.eclipse.xdoclet.core_9.0.0.me201108091322.jar,4,false
com.genuitec.jboss.ide.eclipse.xdoclet.run,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.jboss.ide.eclipse.xdoclet.run_9.0.0.me201108091322.jar,4,false
com.genuitec.jboss.ide.eclipse.xdoclet.ui,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.jboss.ide.eclipse.xdoclet.ui_9.0.0.me201108091322.jar,4,false
com.genuitec.jsdebugger.registration,8.5.0.me201103151808,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.jsdebugger.registration_8.5.0.me201103151808.jar,4,false
com.genuitec.myeclipse.compatibility,9.0.0.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.compatibility_9.0.0.me201108021509.jar,4,false
com.genuitec.myeclipse.database,9.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.database_9.0.0.me201110311918/,4,false
com.genuitec.myeclipse.database.doc,9.0.0.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.database.doc_9.0.0.me201110192133.jar,4,false
com.genuitec.myeclipse.doc,9.0.0.me201110232046,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.doc_9.0.0.me201110232046.jar,4,false
com.genuitec.myeclipse.doc.toc,9.0.0.me201110242305,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.doc.toc_9.0.0.me201110242305.jar,4,false
com.genuitec.myeclipse.ejb.doc,9.0.0.me201108211953,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.ejb.doc_9.0.0.me201108211953.jar,4,false
com.genuitec.myeclipse.icefaces,9.0.1.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.icefaces_9.0.1.me201110171954.jar,4,false
com.genuitec.myeclipse.icefaces.branding,9.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.icefaces.branding_9.0.0.me201012090051.jar,4,false
com.genuitec.myeclipse.matisse,9.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.matisse_9.0.0.me201110311918.jar,4,false
com.genuitec.myeclipse.maven.doc,9.0.0.me201110232046,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.maven.doc_9.0.0.me201110232046.jar,4,false
com.genuitec.myeclipse.persistence.doc,9.0.0.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.persistence.doc_9.0.0.me201110192133.jar,4,false
com.genuitec.myeclipse.perspective,10.0.0.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.perspective_10.0.0.me201110280006.jar,4,false
com.genuitec.myeclipse.product,9.0.0.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.product_9.0.0.me201110280006/,4,false
com.genuitec.myeclipse.profiling.doc,9.0.0.me201108301958,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.profiling.doc_9.0.0.me201108301958.jar,4,false
com.genuitec.myeclipse.spring.doc,9.0.0.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.spring.doc_9.0.0.me201110192133.jar,4,false
com.genuitec.myeclipse.struts.doc,9.0.0.me201110232046,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.struts.doc_9.0.0.me201110232046.jar,4,false
com.genuitec.myeclipse.swing.doc,9.0.0.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.swing.doc_9.0.0.me201110192133.jar,4,false
com.genuitec.myeclipse.uml.doc,9.0.0.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.uml.doc_9.0.0.me201110192133.jar,4,false
com.genuitec.myeclipse.uml2,9.0.0.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.uml2_9.0.0.me201110280006.jar,4,false
com.genuitec.myeclipse.visualvm,9.0.0.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.visualvm_9.0.0.me201110280006/,4,false
com.genuitec.myeclipse.web.doc,9.0.0.me201110232046,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.web.doc_9.0.0.me201110232046.jar,4,false
com.genuitec.myeclipse.ws.doc,9.0.0.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.ws.doc_9.0.0.me201110192133.jar,4,false
com.genuitec.myeclipse.xml.doc,9.0.0.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.myeclipse.xml.doc_9.0.0.me201110171954.jar,4,false
com.genuitec.org.eclipse.webbrowser,9.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.org.eclipse.webbrowser_9.0.0.me201108091322.jar,4,false
com.genuitec.org.hibernate.eclipse,3.2.4.CR1-me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.org.hibernate.eclipse_3.2.4.CR1-me201108091322/,4,false
com.genuitec.org.hibernate.eclipse.console,3.2.4.CR1-me201110112108,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.org.hibernate.eclipse.console_3.2.4.CR1-me201110112108/,4,false
com.genuitec.org.hibernate.eclipse.mapper,3.2.4.CR1-me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.org.hibernate.eclipse.mapper_3.2.4.CR1-me201108091322/,4,false
com.genuitec.pulse.client.common.collab.ui,4.0.0.v201105251300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.common.collab.ui_4.0.0.v201105251300.jar,4,false
com.genuitec.pulse.client.common.shortcut,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.common.shortcut_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse.client.common.shortcut.win32,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.common.shortcut.win32_4.0.0.v201105241300/,4,false
com.genuitec.pulse.client.common.ui,3.2.0.v201102141600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.common.ui_3.2.0.v201102141600.jar,4,false
com.genuitec.pulse.client.common.ui.win32,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.common.ui.win32_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse.client.contrib.ui,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.contrib.ui_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse.client.targetcfg.collab.ui,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.targetcfg.collab.ui_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse.client.targetcfg.collab.workspace.ui,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.client.targetcfg.collab.workspace.ui_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse.compatibility.e36,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.compatibility.e36_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse.compatibility.ui.e36,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.compatibility.ui.e36_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse.installer.base,4.0.0.v201106171500,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse.installer.base_4.0.0.v201106171500.jar,4,false
com.genuitec.pulse2.client.auth.addon,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.auth.addon_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse2.client.authentication,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.authentication_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse2.client.common,4.0.0.v201106171500,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.common_4.0.0.v201106171500.jar,4,false
com.genuitec.pulse2.client.common.exec,4.0.0.v201106201300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.common.exec_4.0.0.v201106201300.jar,4,false
com.genuitec.pulse2.client.common.provisioning,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.common.provisioning_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.client.installer.common,4.0.0.v201106171500,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.installer.common_4.0.0.v201106171500.jar,4,false
com.genuitec.pulse2.client.installer.ui,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.installer.ui_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.client.launcher.ui,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.launcher.ui_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.client.properties,3.2.0.v201103141500,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.properties_3.2.0.v201103141500.jar,4,false
com.genuitec.pulse2.client.services,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.services_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.client.services.ui,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.services.ui_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse2.client.targetcfg.jdt,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.targetcfg.jdt_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse2.client.targetcfg.ui,4.0.0.v201106171500,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.targetcfg.ui_4.0.0.v201106171500.jar,4,true
com.genuitec.pulse2.client.updatesite,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.client.updatesite_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.common,4.0.0.v201106221500,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.common_4.0.0.v201106221500.jar,4,false
com.genuitec.pulse2.common.http,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.common.http_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.common.http.httpclient,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.common.http.httpclient_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.common.http.httpclient.ws,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.common.http.httpclient.ws_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse2.common.http.oakland,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.common.http.oakland_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.common.http.oakland.ws,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.common.http.oakland.ws_3.2.0.v201102081600.jar,4,false
com.genuitec.pulse2.common.ui,4.0.0.v201105241300,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.common.ui_4.0.0.v201105241300.jar,4,false
com.genuitec.pulse2.model,3.2.0.v201103141500,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.model_3.2.0.v201103141500.jar,4,false
com.genuitec.pulse2.model.clientext,3.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.genuitec.pulse2.model.clientext_3.2.0.v201102081600.jar,4,false
com.ibm.icu,4.4.2.v20110208,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.ibm.icu_4.4.2.v20110208.jar,4,false
com.jcraft.jsch,0.1.41.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.jcraft.jsch_0.1.41.v201101211617.jar,4,false
com.lowagie.text,2.1.7.v201004222200,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.lowagie.text_2.1.7.v201004222200.jar,4,false
com.myeclipseide.feature.branding,9.0.0.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.myeclipseide.feature.branding_9.0.0.me201110280006.jar,4,false
com.ning.async-http-client,1.6.3.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.ning.async-http-client_1.6.3.me201108091322.jar,4,false
com.springsource.javax.el,1.0.0,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.javax.el_1.0.0.jar,4,false
com.springsource.javax.jms,1.1.0,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.javax.jms_1.1.0.jar,4,false
com.springsource.javax.servlet,2.5.0,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.javax.servlet_2.5.0.jar,4,false
com.springsource.javax.servlet.jsp,2.1.0,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.javax.servlet.jsp_2.1.0.jar,4,false
com.springsource.javax.servlet.jsp.jstl,1.2.0,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.javax.servlet.jsp.jstl_1.2.0.jar,4,false
com.springsource.org.antlr,3.0.1,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.org.antlr_3.0.1.jar,4,false
com.springsource.org.apache.myfaces.javax.faces,1.2.2,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.org.apache.myfaces.javax.faces_1.2.2.jar,4,false
com.springsource.org.aspectj.weaver,1.6.10.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.org.aspectj.weaver_1.6.10.RELEASE.jar,4,false
com.springsource.org.objectweb.asm,2.2.3,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.org.objectweb.asm_2.2.3.jar,4,false
com.springsource.org.objectweb.asm.commons,2.2.3,file:/D:/Program%20Files/MyEclipse/Common/plugins/com.springsource.org.objectweb.asm.commons_2.2.3.jar,4,false
edu.emory.mathcs.backport,3.1.0.v200902251154,file:/D:/Program%20Files/MyEclipse/Common/plugins/edu.emory.mathcs.backport_3.1.0.v200902251154.jar,4,false
fr.obeo.acceleo.bridge,2.6.0.200906261742,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.bridge_2.6.0.200906261742/,4,false
fr.obeo.acceleo.bridge.ui,2.6.0.200906261742,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.bridge.ui_2.6.0.200906261742.jar,4,false
fr.obeo.acceleo.chain,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.chain_2.6.0.200906261744/,4,false
fr.obeo.acceleo.chain.edit,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.chain.edit_2.6.0.200906261744/,4,false
fr.obeo.acceleo.chain.editor,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.chain.editor_2.6.0.200906261744/,4,false
fr.obeo.acceleo.chain.ui,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.chain.ui_2.6.0.200906261744/,4,false
fr.obeo.acceleo.ecore,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.ecore_2.6.0.200906261744/,4,false
fr.obeo.acceleo.ecore.ui,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.ecore.ui_2.6.0.200906261744/,4,false
fr.obeo.acceleo.gen,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.gen_2.6.0.200906261744/,4,false
fr.obeo.acceleo.gen.debug.ui,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.gen.debug.ui_2.6.0.200906261744.jar,4,false
fr.obeo.acceleo.gen.profiler,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.gen.profiler_2.6.0.200906261744.jar,4,false
fr.obeo.acceleo.gen.profiler.edit,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.gen.profiler.edit_2.6.0.200906261744.jar,4,false
fr.obeo.acceleo.gen.profiler.editor,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.gen.profiler.editor_2.6.0.200906261744.jar,4,false
fr.obeo.acceleo.gen.ui,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.gen.ui_2.6.0.200906261744/,4,false
fr.obeo.acceleo.template,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.template_2.6.0.200906261744.jar,4,false
fr.obeo.acceleo.template.edit,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.template.edit_2.6.0.200906261744.jar,4,false
fr.obeo.acceleo.template.gen,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.template.gen_2.6.0.200906261744.jar,4,false
fr.obeo.acceleo.tools,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.tools_2.6.0.200906261744/,4,false
fr.obeo.acceleo.tools.ui,2.6.0.200906261744,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.tools.ui_2.6.0.200906261744/,4,false
fr.obeo.acceleo.uml13,2.6.0.200906261742,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.uml13_2.6.0.200906261742.jar,4,false
fr.obeo.acceleo.uml14,2.6.0.200906261742,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.uml14_2.6.0.200906261742.jar,4,false
fr.obeo.acceleo.uml14.mof,2.6.0.200906261742,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.uml14.mof_2.6.0.200906261742/,4,false
fr.obeo.acceleo.uml14.ui,2.6.0.200906261742,file:/D:/Program%20Files/MyEclipse/Common/plugins/fr.obeo.acceleo.uml14.ui_2.6.0.200906261742/,4,false
ie.wombat.jbdiff,0.1.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/ie.wombat.jbdiff_0.1.0.v201102081600.jar,4,false
java_cup.runtime,0.10.0.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/java_cup.runtime_0.10.0.v201005080400.jar,4,false
javax.activation,1.1.0.v201105071233,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.activation_1.1.0.v201105071233.jar,4,false
javax.annotation,1.1.1.v201006150915,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.annotation_1.1.1.v201006150915.jar,4,false
javax.inject,1.0.0.v20091030,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.inject_1.0.0.v20091030.jar,4,false
javax.mail,1.4.0.v201005080615,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.mail_1.4.0.v201005080615.jar,4,false
javax.persistence,2.0.3.v201010191057,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.persistence_2.0.3.v201010191057.jar,4,false
javax.servlet,2.5.0.v201103041518,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.servlet_2.5.0.v201103041518.jar,4,false
javax.servlet.jsp,2.0.0.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.servlet.jsp_2.0.0.v201101211617.jar,4,false
javax.transaction,1.1.1.v201105210645,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.transaction_1.1.1.v201105210645.jar,4,false
javax.wsdl,1.5.1.v201012040544,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.wsdl_1.5.1.v201012040544.jar,4,false
javax.wsdl,1.6.2.v201012040545,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.wsdl_1.6.2.v201012040545.jar,4,false
javax.xml,1.3.4.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.xml_1.3.4.v201005080400.jar,4,false
javax.xml.bind,2.2.0.v201105210648,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.xml.bind_2.2.0.v201105210648.jar,4,false
javax.xml.rpc,1.1.0.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.xml.rpc_1.1.0.v201005080400/,4,false
javax.xml.soap,1.2.0.v201005080501,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.xml.soap_1.2.0.v201005080501/,4,false
javax.xml.soap,1.3.0.v201105210645,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.xml.soap_1.3.0.v201105210645/,4,false
javax.xml.stream,1.0.1.v201004272200,file:/D:/Program%20Files/MyEclipse/Common/plugins/javax.xml.stream_1.0.1.v201004272200.jar,4,false
lpg.runtime.java,2.0.17.v201004271640,file:/D:/Program%20Files/MyEclipse/Common/plugins/lpg.runtime.java_2.0.17.v201004271640.jar,4,false
net.sf.cglib,1.0.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/net.sf.cglib_1.0.0.v201102081600.jar,4,false
net.sourceforge.lpg.lpgjavaruntime,1.1.0.v201004271650,file:/D:/Program%20Files/MyEclipse/Common/plugins/net.sourceforge.lpg.lpgjavaruntime_1.1.0.v201004271650.jar,4,false
org.aopalliance,1.0.0.v200905130917,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.aopalliance_1.0.0.v200905130917.jar,4,false
org.apache.ant,1.8.2.v20110505-1300,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.ant_1.8.2.v20110505-1300/,4,false
org.apache.axis,1.4.0.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.axis_1.4.0.v201005080400/,4,false
org.apache.batik.bridge,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.bridge_1.6.0.v201011041432.jar,4,false
org.apache.batik.css,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.css_1.6.0.v201011041432.jar,4,false
org.apache.batik.dom,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.dom_1.6.0.v201011041432.jar,4,false
org.apache.batik.dom.svg,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.dom.svg_1.6.0.v201011041432.jar,4,false
org.apache.batik.ext.awt,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.ext.awt_1.6.0.v201011041432.jar,4,false
org.apache.batik.parser,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.parser_1.6.0.v201011041432.jar,4,false
org.apache.batik.pdf,1.6.0.v201105071520,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.pdf_1.6.0.v201105071520.jar,4,false
org.apache.batik.svggen,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.svggen_1.6.0.v201011041432.jar,4,false
org.apache.batik.transcoder,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.transcoder_1.6.0.v201011041432.jar,4,false
org.apache.batik.util,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.util_1.6.0.v201011041432.jar,4,false
org.apache.batik.util.gui,1.6.0.v200805290154,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.util.gui_1.6.0.v200805290154.jar,4,false
org.apache.batik.xml,1.6.0.v201011041432,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.batik.xml_1.6.0.v201011041432.jar,4,false
org.apache.bcel,5.2.0.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.bcel_5.2.0.v201005080400.jar,4,false
org.apache.commons.codec,1.3.0.v20100518-1140,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.codec_1.3.0.v20100518-1140.jar,4,false
org.apache.commons.codec,1.3.0.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar,4,false
org.apache.commons.collections,3.2.0.v201005080500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.collections_3.2.0.v201005080500.jar,4,false
org.apache.commons.discovery,0.2.0.v201004190315,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.discovery_0.2.0.v201004190315/,4,false
org.apache.commons.el,1.0.0.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.el_1.0.0.v201101211617.jar,4,false
org.apache.commons.fileupload,1.2.0.v20080604-1500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.fileupload_1.2.0.v20080604-1500.jar,4,false
org.apache.commons.httpclient,3.1.0.v201012070820,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar,4,false
org.apache.commons.io,2.0.1.v201105210651,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.io_2.0.1.v201105210651.jar,4,false
org.apache.commons.jxpath,1.2.0.v20080604-1500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.jxpath_1.2.0.v20080604-1500.jar,4,false
org.apache.commons.lang,2.1.0.v201005080500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.lang_2.1.0.v201005080500.jar,4,false
org.apache.commons.logging,1.0.4.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar,4,false
org.apache.commons.logging,1.1.1.v201005080502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.commons.logging_1.1.1.v201005080502.jar,4,false
org.apache.derby,10.5.1.1_201105231903,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.derby_10.5.1.1_201105231903.jar,4,false
org.apache.derby.core,10.5.1.1_v20101011,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.derby.core_10.5.1.1_v20101011/,4,false
org.apache.jasper,5.5.17.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.jasper_5.5.17.v201101211617.jar,4,false
org.apache.log4j,1.2.15.v201012070815,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.log4j_1.2.15.v201012070815.jar,4,false
org.apache.lucene,1.9.1.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene_1.9.1.v201101211617.jar,4,false
org.apache.lucene,2.9.1.v201101211721,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene_2.9.1.v201101211721.jar,4,false
org.apache.lucene.analysis,2.9.1.v201101211721,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar,4,false
org.apache.lucene.core,2.9.1.v201101211721,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.core_2.9.1.v201101211721.jar,4,false
org.apache.lucene.highlighter,2.9.1.v20100421-0704,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.highlighter_2.9.1.v20100421-0704.jar,4,false
org.apache.lucene.memory,2.9.1.v20100421-0704,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.memory_2.9.1.v20100421-0704.jar,4,false
org.apache.lucene.misc,2.9.1.v20100421-0704,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.misc_2.9.1.v20100421-0704.jar,4,false
org.apache.lucene.queries,2.9.1.v20100421-0704,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.queries_2.9.1.v20100421-0704.jar,4,false
org.apache.lucene.snowball,2.9.1.v20100421-0704,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.snowball_2.9.1.v20100421-0704.jar,4,false
org.apache.lucene.spellchecker,2.9.1.v20100421-0704,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.lucene.spellchecker_2.9.1.v20100421-0704.jar,4,false
org.apache.oro,2.0.8.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.oro_2.0.8.v201005080400.jar,4,false
org.apache.velocity,1.5.0.v200905192330,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.velocity_1.5.0.v200905192330.jar,4,false
org.apache.wsil4j,1.0.0.v200901211807,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.wsil4j_1.0.0.v200901211807.jar,4,false
org.apache.xalan,2.7.1.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.xalan_2.7.1.v201005080400.jar,4,false
org.apache.xerces,2.9.0.v201101211617,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.xerces_2.9.0.v201101211617.jar,4,false
org.apache.xml.resolver,1.2.0.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.xml.resolver_1.2.0.v201005080400.jar,4,false
org.apache.xml.serializer,2.7.1.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.apache.xml.serializer_2.7.1.v201005080400.jar,4,false
org.codehaus.jackson.core,1.6.0.v20101005-0925,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.codehaus.jackson.core_1.6.0.v20101005-0925.jar,4,false
org.codehaus.jackson.mapper,1.6.0.v20101005-0925,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.codehaus.jackson.mapper_1.6.0.v20101005-0925.jar,4,false
org.eclipse.albireo.core,0.0.3.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.albireo.core_0.0.3.me201108091322.jar,4,false
org.eclipse.ant.core,3.2.300.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ant.core_3.2.300.v20110511.jar,4,false
org.eclipse.ant.launching,1.0.100.v20110506,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ant.launching_1.0.100.v20110506.jar,4,false
org.eclipse.ant.ui,3.5.100.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ant.ui_3.5.100.v20110510.jar,4,false
org.eclipse.atf.core,0.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.core_0.2.2.me201108091322.jar,4,false
org.eclipse.atf.mozilla.ide.core,0.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.mozilla.ide.core_0.2.2.me201108091322.jar,4,false
org.eclipse.atf.mozilla.ide.debug,0.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.mozilla.ide.debug_0.2.2.me201108091322.jar,4,false
org.eclipse.atf.mozilla.ide.debug.ui,0.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.mozilla.ide.debug.ui_0.2.2.me201108091322.jar,4,false
org.eclipse.atf.mozilla.ide.ui,0.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.mozilla.ide.ui_0.2.2.me201108091322.jar,4,false
org.eclipse.atf.mozilla.ide.ui.extras,0.2.2.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.mozilla.ide.ui.extras_0.2.2.me201003052220.jar,4,false
org.eclipse.atf.templates,0.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.templates_0.2.2.me201108091322.jar,4,false
org.eclipse.atf.ui,0.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.atf.ui_0.2.2.me201108091322.jar,4,false
org.eclipse.birt,2.6.1.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt_2.6.1.me201012090051.jar,4,false
org.eclipse.birt.chart.device.extension,3.7.0.v20110414,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.device.extension_3.7.0.v20110414.jar,4,false
org.eclipse.birt.chart.device.pdf,3.7.0.v20110303,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.device.pdf_3.7.0.v20110303.jar,4,false
org.eclipse.birt.chart.device.svg,3.7.0.v20110421,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.device.svg_3.7.0.v20110421.jar,4,false
org.eclipse.birt.chart.device.swt,3.7.0.v20110303,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.device.swt_3.7.0.v20110303.jar,4,false
org.eclipse.birt.chart.engine,3.7.0.v20110519,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.engine_3.7.0.v20110519.jar,4,false
org.eclipse.birt.chart.engine.extension,3.7.0.v20110421,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.engine.extension_3.7.0.v20110421.jar,4,false
org.eclipse.birt.chart.examples.core,3.7.0.v20110414,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.examples.core_3.7.0.v20110414.jar,4,false
org.eclipse.birt.chart.reportitem,3.7.0.v20110512,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.reportitem_3.7.0.v20110512.jar,4,false
org.eclipse.birt.chart.reportitem.ui,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.reportitem.ui_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.chart.ui,3.7.0.v20110331,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.ui_3.7.0.v20110331.jar,4,false
org.eclipse.birt.chart.ui.extension,3.7.0.v20110414,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.chart.ui.extension_3.7.0.v20110414.jar,4,false
org.eclipse.birt.core,3.7.0.v20110608,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.core_3.7.0.v20110608.jar,4,false
org.eclipse.birt.core.script.function,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.core.script.function_3.7.0.v20110602.jar,4,false
org.eclipse.birt.core.ui,3.7.0.v20110407,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.core.ui_3.7.0.v20110407.jar,4,false
org.eclipse.birt.cshelp,3.7.0.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.cshelp_3.7.0.me201108021509/,4,false
org.eclipse.birt.data,3.7.0.v20110603,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.data_3.7.0.v20110603.jar,4,false
org.eclipse.birt.data.aggregation,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.data.aggregation_3.7.0.v20110602.jar,4,false
org.eclipse.birt.doc,3.7.0.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.doc_3.7.0.me201108021509/,4,false
org.eclipse.birt.integration.wtp.ui,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.data.adapter,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.adapter_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.data.bidi.utils,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.bidi.utils_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.data.bidi.utils.ui,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.bidi.utils.ui_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.data.oda.jdbc,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.me201108091322/,4,false
org.eclipse.birt.report.data.oda.jdbc.dbprofile,3.7.0.v20110603,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.jdbc.dbprofile_3.7.0.v20110603.jar,4,false
org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb.ui,2.6.1.v20100909,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb.ui_2.6.1.v20100909.jar,4,false
org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui,3.7.0.v20110603,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui_3.7.0.v20110603.jar,4,false
org.eclipse.birt.report.data.oda.jdbc.ui,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.jdbc.ui_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.data.oda.sampledb,3.7.0.v20110608,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/,4,false
org.eclipse.birt.report.data.oda.sampledb.ui,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.sampledb.ui_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.data.oda.xml,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.xml_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.data.oda.xml.ui,2.5.2.v20100205,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.data.oda.xml.ui_2.5.2.v20100205.jar,4,false
org.eclipse.birt.report.debug.core,3.7.0.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.debug.core_3.7.0.me201108021509.jar,4,false
org.eclipse.birt.report.debug.ui,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.debug.ui_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.designer.core,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.core_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.designer.ui,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.designer.ui.cubebuilder,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.cubebuilder_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.designer.ui.data,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.data_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.designer.ui.editor.script,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.editor.script_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.designer.ui.editor.xml.wtp,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.editor.xml.wtp_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.designer.ui.editors,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.editors_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.designer.ui.editors.schematic,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.editors.schematic_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.designer.ui.ide,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.ide_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.designer.ui.lib,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.lib_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.designer.ui.lib.explorer,3.7.0.me201109130910,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.lib.explorer_3.7.0.me201109130910.jar,4,false
org.eclipse.birt.report.designer.ui.preview.web,3.7.0.me201108311825,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.preview.web_3.7.0.me201108311825.jar,4,false
org.eclipse.birt.report.designer.ui.views,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.designer.ui.views_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine,3.7.0.v20110603,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine_3.7.0.v20110603.jar,4,false
org.eclipse.birt.report.engine.dataextraction,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.dataextraction_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.dataextraction.csv,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.dataextraction.csv_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.config,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.config_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.excel.config,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.excel.config_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.html,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.html_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.html.config,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.html.config_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.pdf,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.pdf_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.pdf.config,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.pdf.config_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.postscript,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.postscript_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.postscript.config,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.postscript.config_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.ppt,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.ppt_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.ppt.config,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.ppt.config_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.prototype.excel,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.wpml,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.wpml_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.emitter.wpml.config,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.emitter.wpml.config_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.engine.fonts,2.6.1.v20100812,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.fonts_2.6.1.v20100812/,4,false
org.eclipse.birt.report.engine.script.javascript,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.engine.script.javascript_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.item.crosstab.core,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.item.crosstab.core_3.7.0.v20110602.jar,4,false
org.eclipse.birt.report.item.crosstab.ui,3.7.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.item.crosstab.ui_3.7.0.me201108091322.jar,4,false
org.eclipse.birt.report.model,3.7.0.v20110603,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.model_3.7.0.v20110603.jar,4,false
org.eclipse.birt.report.model.adapter.oda,3.7.0.v20110526,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.model.adapter.oda_3.7.0.v20110526.jar,4,false
org.eclipse.birt.report.viewer,3.7.0.v20110602,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/,4,false
org.eclipse.birt.resources,3.7.0.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.birt.resources_3.7.0.me201108021509/,4,false
org.eclipse.compare,3.5.200.I20110525-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.compare_3.5.200.I20110525-0800.jar,4,false
org.eclipse.compare.core,3.5.200.I20110208-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.compare.core_3.5.200.I20110208-0800.jar,4,false
org.eclipse.compare.win32,1.0.200.I20110510-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.compare.win32_1.0.200.I20110510-0800.jar,4,false
org.eclipse.core.boot,3.1.200.v20100505,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.boot_3.1.200.v20100505.jar,4,false
org.eclipse.core.commands,3.6.0.I20110111-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.commands_3.6.0.I20110111-0800.jar,4,false
org.eclipse.core.contenttype,3.4.100.v20110423-0524,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.contenttype_3.4.100.v20110423-0524.jar,4,false
org.eclipse.core.databinding,1.4.0.I20110111-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.databinding_1.4.0.I20110111-0800.jar,4,false
org.eclipse.core.databinding.beans,1.2.100.I20100824-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.databinding.beans_1.2.100.I20100824-0800.jar,4,false
org.eclipse.core.databinding.observable,1.4.0.I20110222-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.databinding.observable_1.4.0.I20110222-0800.jar,4,false
org.eclipse.core.databinding.property,1.4.0.I20110222-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.databinding.property_1.4.0.I20110222-0800.jar,4,false
org.eclipse.core.expressions,3.4.300.v20110228,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.expressions_3.4.300.v20110228.jar,4,false
org.eclipse.core.externaltools,1.0.100.v20110506,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.externaltools_1.0.100.v20110506.jar,4,false
org.eclipse.core.filebuffers,3.5.200.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.filebuffers_3.5.200.v20110505-0800.jar,4,false
org.eclipse.core.filesystem,1.3.100.v20110423-0524,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.filesystem_1.3.100.v20110423-0524.jar,4,false
org.eclipse.core.filesystem.win32.x86,1.1.300.v20110423-0524,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.filesystem.win32.x86_1.1.300.v20110423-0524.jar,4,false
org.eclipse.core.jobs,3.5.100.v20110404,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.jobs_3.5.100.v20110404.jar,4,false
org.eclipse.core.net,1.2.100.I20110511-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.net_1.2.100.I20110511-0800.jar,4,false
org.eclipse.core.net.win32.x86,1.0.100.I20110331-0827,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.net.win32.x86_1.0.100.I20110331-0827.jar,4,false
org.eclipse.core.resources,3.7.100.v20110510-0712,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.resources_3.7.100.v20110510-0712.jar,4,false
org.eclipse.core.resources.win32.x86,3.5.100.v20110423-0524,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.resources.win32.x86_3.5.100.v20110423-0524.jar,4,false
org.eclipse.core.runtime,3.7.0.v20110110,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.runtime_3.7.0.v20110110.jar,4,true
org.eclipse.core.runtime.compatibility,3.2.100.v20100505,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar,4,false
org.eclipse.core.runtime.compatibility.auth,3.2.200.v20110110,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.runtime.compatibility.auth_3.2.200.v20110110.jar,4,false
org.eclipse.core.runtime.compatibility.registry,3.5.0.v20110505,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505/,4,false
org.eclipse.core.variables,3.2.500.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.core.variables_3.2.500.v20110511.jar,4,false
org.eclipse.cvs,1.1.100.v201106131736,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.cvs_1.1.100.v201106131736.jar,4,false
org.eclipse.dali.core,0.5.0.me201101232045,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dali.core_0.5.0.me201101232045.jar,4,false
org.eclipse.datatools.connectivity,1.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity_1.2.2.me201108091322.jar,4,false
org.eclipse.datatools.connectivity.apache.derby,1.0.101.v201104090305,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.apache.derby_1.0.101.v201104090305.jar,4,false
org.eclipse.datatools.connectivity.apache.derby.dbdefinition,1.0.2.v200906161815,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.apache.derby.dbdefinition_1.0.2.v200906161815.jar,4,false
org.eclipse.datatools.connectivity.apache.derby.ui,1.0.3.v201007080903,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.apache.derby.ui_1.0.3.v201007080903.jar,4,false
org.eclipse.datatools.connectivity.console.profile,1.0.0.v200906020553,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.console.profile_1.0.0.v200906020553.jar,4,false
org.eclipse.datatools.connectivity.db.generic,1.0.1.v200908130547,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.db.generic_1.0.1.v200908130547.jar,4,false
org.eclipse.datatools.connectivity.db.generic.ui,1.0.1.v201004070709,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.db.generic.ui_1.0.1.v201004070709.jar,4,false
org.eclipse.datatools.connectivity.dbdefinition.genericJDBC,1.0.1.v200906161815,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.dbdefinition.genericJDBC_1.0.1.v200906161815.jar,4,false
org.eclipse.datatools.connectivity.oda,3.3.2.v201105200920,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda_3.3.2.v201105200920.jar,4,false
org.eclipse.datatools.connectivity.oda.consumer,3.2.4.v201105200848,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda.consumer_3.2.4.v201105200848.jar,4,false
org.eclipse.datatools.connectivity.oda.design,3.3.3.v201105191315,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda.design_3.3.3.v201105191315.jar,4,false
org.eclipse.datatools.connectivity.oda.design.ui,3.2.5.v201105240457,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda.design.ui_3.2.5.v201105240457.jar,4,false
org.eclipse.datatools.connectivity.oda.flatfile,3.1.1.v201104191557,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda.flatfile_3.1.1.v201104191557.jar,4,false
org.eclipse.datatools.connectivity.oda.flatfile.ui,3.1.1.v201104221058,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda.flatfile.ui_3.1.1.v201104221058.jar,4,false
org.eclipse.datatools.connectivity.oda.profile,3.2.5.v201104090305,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda.profile_3.2.5.v201104090305.jar,4,false
org.eclipse.datatools.connectivity.oda.template.ui,3.2.1.v201004090942,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.oda.template.ui_3.2.1.v201004090942.jar,4,false
org.eclipse.datatools.connectivity.sqm.core,1.2.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.sqm.core_1.2.2.me201108091322.jar,4,false
org.eclipse.datatools.connectivity.sqm.core.ui,1.2.0.v201002281800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.sqm.core.ui_1.2.0.v201002281800.jar,4,false
org.eclipse.datatools.connectivity.sqm.server.ui,1.1.100.v201009280455,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.sqm.server.ui_1.1.100.v201009280455.jar,4,false
org.eclipse.datatools.connectivity.ui,1.2.1.v201010211430,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.ui_1.2.1.v201010211430.jar,4,false
org.eclipse.datatools.connectivity.ui.dse,1.1.4.v201004270430,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.connectivity.ui.dse_1.1.4.v201004270430.jar,4,false
org.eclipse.datatools.doc.user,1.7.0.20090521092446,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.doc.user_1.7.0.20090521092446.jar,4,false
org.eclipse.datatools.enablement.finfo,1.5.1.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.finfo_1.5.1.v200906161800.jar,4,false
org.eclipse.datatools.enablement.hsqldb,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.hsqldb_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.hsqldb.dbdefinition,1.0.0.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.hsqldb.dbdefinition_1.0.0.v200906161800.jar,4,false
org.eclipse.datatools.enablement.hsqldb.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.hsqldb.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.iseries,1.0.2.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.iseries_1.0.2.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.iseries.dbdefinition,1.0.3.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.iseries.dbdefinition_1.0.3.v200906161800.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.iseries.ui,1.0.1.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.iseries.ui_1.0.1.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.luw,1.0.2.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.luw_1.0.2.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.luw.dbdefinition,1.0.4.v201005211215,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.luw.dbdefinition_1.0.4.v201005211215.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.luw.ui,1.0.2.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.luw.ui_1.0.2.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.zseries,1.0.2.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.zseries_1.0.2.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.zseries.dbdefinition,1.0.4.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.zseries.dbdefinition_1.0.4.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.db2.zseries.ui,1.0.1.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.db2.zseries.ui_1.0.1.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.informix,1.0.1.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.informix_1.0.1.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.informix.dbdefinition,1.0.4.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.informix.dbdefinition_1.0.4.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.informix.ui,1.0.2.v201005211230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.informix.ui_1.0.2.v201005211230.jar,4,false
org.eclipse.datatools.enablement.ibm.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ibm.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.ingres,1.0.0.v200906111150,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ingres_1.0.0.v200906111150.jar,4,false
org.eclipse.datatools.enablement.ingres.dbdefinition,1.0.0.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ingres.dbdefinition_1.0.0.v200906161800.jar,4,false
org.eclipse.datatools.enablement.ingres.ui,1.0.0.v201105270214,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.ingres.ui_1.0.0.v201105270214.jar,4,false
org.eclipse.datatools.enablement.jdt.classpath,1.0.1.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.jdt.classpath_1.0.1.me201012090051.jar,4,false
org.eclipse.datatools.enablement.msft.sqlserver,1.0.1.v201001180222,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.msft.sqlserver_1.0.1.v201001180222.jar,4,false
org.eclipse.datatools.enablement.msft.sqlserver.dbdefinition,1.0.0.v201004211630,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.msft.sqlserver.dbdefinition_1.0.0.v201004211630.jar,4,false
org.eclipse.datatools.enablement.msft.sqlserver.ui,1.0.1.v200908130512,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.msft.sqlserver.ui_1.0.1.v200908130512.jar,4,false
org.eclipse.datatools.enablement.mysql,1.0.2.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.mysql_1.0.2.me201012090051.jar,4,false
org.eclipse.datatools.enablement.mysql.dbdefinition,1.0.4.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.mysql.dbdefinition_1.0.4.v200906161800.jar,4,false
org.eclipse.datatools.enablement.mysql.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.mysql.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.oda.ws,1.2.2.v201011041216,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.oda.ws_1.2.2.v201011041216.jar,4,false
org.eclipse.datatools.enablement.oda.ws.ui,1.2.2.v201105111200,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.oda.ws.ui_1.2.2.v201105111200.jar,4,false
org.eclipse.datatools.enablement.oda.xml,1.2.1.v201104121500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.oda.xml_1.2.1.v201104121500.jar,4,false
org.eclipse.datatools.enablement.oda.xml.ui,1.2.1.v201104211630,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.oda.xml.ui_1.2.1.v201104211630.jar,4,false
org.eclipse.datatools.enablement.oracle,1.0.0.v200908130544,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.oracle_1.0.0.v200908130544.jar,4,false
org.eclipse.datatools.enablement.oracle.dbdefinition,1.0.102.v201101120745,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.oracle.dbdefinition_1.0.102.v201101120745.jar,4,false
org.eclipse.datatools.enablement.oracle.ui,1.0.2.v201005051303,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.oracle.ui_1.0.2.v201005051303.jar,4,false
org.eclipse.datatools.enablement.postgresql,1.0.1.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.postgresql_1.0.1.v200906020900.jar,4,false
org.eclipse.datatools.enablement.postgresql.dbdefinition,1.0.1.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.postgresql.dbdefinition_1.0.1.v200906161800.jar,4,false
org.eclipse.datatools.enablement.postgresql.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.postgresql.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sap.maxdb,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sap.maxdb_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sap.maxdb.dbdefinition,1.0.0.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sap.maxdb.dbdefinition_1.0.0.v200906161800.jar,4,false
org.eclipse.datatools.enablement.sap.maxdb.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sap.maxdb.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sqlite,1.0.0.v201002041100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sqlite_1.0.0.v201002041100.jar,4,false
org.eclipse.datatools.enablement.sqlite.dbdefinition,1.0.1.v201002041100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sqlite.dbdefinition_1.0.1.v201002041100.jar,4,false
org.eclipse.datatools.enablement.sqlite.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sqlite.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sybase,1.0.1.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase_1.0.1.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sybase.asa,1.0.1.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.asa_1.0.1.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sybase.asa.dbdefinition,1.0.0.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.asa.dbdefinition_1.0.0.v200906161800.jar,4,false
org.eclipse.datatools.enablement.sybase.asa.models,1.0.0.v201010140307,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.asa.models_1.0.0.v201010140307.jar,4,false
org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples,2.5.0.200810071,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples_2.5.0.200810071.jar,4,false
org.eclipse.datatools.enablement.sybase.asa.ui,1.0.1.v200906111150,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.asa.ui_1.0.1.v200906111150.jar,4,false
org.eclipse.datatools.enablement.sybase.ase,1.0.1.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.ase_1.0.1.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sybase.ase.dbdefinition,1.0.0.v200906161800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.ase.dbdefinition_1.0.0.v200906161800.jar,4,false
org.eclipse.datatools.enablement.sybase.ase.models,1.0.1.v201010140307,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.ase.models_1.0.1.v201010140307.jar,4,false
org.eclipse.datatools.enablement.sybase.ase.ui,1.0.1.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.ase.ui_1.0.1.v200906020900.jar,4,false
org.eclipse.datatools.enablement.sybase.models,1.0.0.v201010140307,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.models_1.0.0.v201010140307.jar,4,false
org.eclipse.datatools.enablement.sybase.ui,1.0.0.v200906090458,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.enablement.sybase.ui_1.0.0.v200906090458.jar,4,false
org.eclipse.datatools.help,1.5.0.v200906020553,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.help_1.5.0.v200906020553.jar,4,false
org.eclipse.datatools.modelbase.dbdefinition,1.0.2.v201002130228,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.modelbase.dbdefinition_1.0.2.v201002130228.jar,4,false
org.eclipse.datatools.modelbase.derby,1.0.0.v201002161452,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.modelbase.derby_1.0.0.v201002161452.jar,4,false
org.eclipse.datatools.modelbase.sql,1.0.4.v201002250945,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.modelbase.sql_1.0.4.v201002250945.jar,4,false
org.eclipse.datatools.modelbase.sql.edit,1.0.1.v201002161452,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.modelbase.sql.edit_1.0.1.v201002161452.jar,4,false
org.eclipse.datatools.modelbase.sql.query,1.1.1.v201008100700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.modelbase.sql.query_1.1.1.v201008100700.jar,4,false
org.eclipse.datatools.modelbase.sql.query.edit,1.0.0.v201105201100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.modelbase.sql.query.edit_1.0.0.v201105201100.jar,4,false
org.eclipse.datatools.modelbase.sql.xml.query,1.0.1.v201004291415,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.modelbase.sql.xml.query_1.0.1.v201004291415.jar,4,false
org.eclipse.datatools.oda.cshelp,1.1.1.v200907031118,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.oda.cshelp_1.1.1.v200907031118.jar,4,false
org.eclipse.datatools.sqltools.common.ui,1.0.0.v200906022302,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.common.ui_1.0.0.v200906022302.jar,4,false
org.eclipse.datatools.sqltools.db.derby,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.db.derby_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.sqltools.db.derby.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.db.derby.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.sqltools.db.generic,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.db.generic_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.sqltools.db.generic.ui,1.0.0.v200906020900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.db.generic.ui_1.0.0.v200906020900.jar,4,false
org.eclipse.datatools.sqltools.ddlgen.ui,1.0.1.v201002270530,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.ddlgen.ui_1.0.1.v201002270530.jar,4,false
org.eclipse.datatools.sqltools.debugger.core,1.0.1.v201005250945,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.debugger.core_1.0.1.v201005250945.jar,4,false
org.eclipse.datatools.sqltools.debugger.core.ui,1.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.debugger.core.ui_1.0.0.me201108091322.jar,4,false
org.eclipse.datatools.sqltools.editor.core,1.0.0.v201001150815,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.editor.core_1.0.0.v201001150815.jar,4,false
org.eclipse.datatools.sqltools.editor.core.ui,1.0.0.v201001150815,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.editor.core.ui_1.0.0.v201001150815.jar,4,false
org.eclipse.datatools.sqltools.parsers.sql,1.0.2.v201004291415,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.parsers.sql_1.0.2.v201004291415.jar,4,false
org.eclipse.datatools.sqltools.parsers.sql.lexer,1.0.1.v200906030654,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.parsers.sql.lexer_1.0.1.v200906030654.jar,4,false
org.eclipse.datatools.sqltools.parsers.sql.query,1.2.0.v201004291415,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.parsers.sql.query_1.2.0.v201004291415.jar,4,false
org.eclipse.datatools.sqltools.parsers.sql.xml.query,1.0.0.v200906022302,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.parsers.sql.xml.query_1.0.0.v200906022302.jar,4,false
org.eclipse.datatools.sqltools.plan,1.0.0.v200906022302,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.plan_1.0.0.v200906022302.jar,4,false
org.eclipse.datatools.sqltools.result,1.1.1.v201101210500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.result_1.1.1.v201101210500.jar,4,false
org.eclipse.datatools.sqltools.result.ui,1.1.1.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.result.ui_1.1.1.me201110192133.jar,4,false
org.eclipse.datatools.sqltools.routineeditor,1.0.0.v201003161000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.routineeditor_1.0.0.v201003161000.jar,4,false
org.eclipse.datatools.sqltools.routineeditor.ui,1.0.1.v201004060545,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.routineeditor.ui_1.0.1.v201004060545.jar,4,false
org.eclipse.datatools.sqltools.schemaobjecteditor,1.1.0.v200906022302,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.schemaobjecteditor_1.1.0.v200906022302.jar,4,false
org.eclipse.datatools.sqltools.schemaobjecteditor.ui,1.1.1.200810071,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.schemaobjecteditor.ui_1.1.1.200810071.jar,4,false
org.eclipse.datatools.sqltools.schemaobjecteditor.ui.pages,1.1.0.200810071,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.schemaobjecteditor.ui.pages_1.1.0.200810071.jar,4,false
org.eclipse.datatools.sqltools.sql,1.0.0.v200906022302,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.sql_1.0.0.v200906022302.jar,4,false
org.eclipse.datatools.sqltools.sql.ui,1.0.0.v200906022302,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.sql.ui_1.0.0.v200906022302.jar,4,false
org.eclipse.datatools.sqltools.sqlbuilder,1.0.3.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.sqlbuilder_1.0.3.me201108091322.jar,4,false
org.eclipse.datatools.sqltools.sqleditor,1.0.2.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.sqleditor_1.0.2.me201108091322.jar,4,false
org.eclipse.datatools.sqltools.sqlscrapbook,1.0.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.datatools.sqltools.sqlscrapbook_1.0.1.me201108091322.jar,4,false
org.eclipse.debug.core,3.7.0.v20110518,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.debug.core_3.7.0.v20110518.jar,4,false
org.eclipse.debug.ui,3.7.0.v20110518,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.debug.ui_3.7.0.v20110518.jar,4,false
org.eclipse.dltk,1.0.1.v20090903-2153,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk_1.0.1.v20090903-2153/,4,false
org.eclipse.dltk.console,1.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.console_1.0.0.me201012090051.jar,4,false
org.eclipse.dltk.console.ui,1.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.console.ui_1.0.0.me201108091322.jar,4,false
org.eclipse.dltk.core,1.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.core_1.0.0.me201108091322.jar,4,false
org.eclipse.dltk.debug,1.0.0.me201105051700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.debug_1.0.0.me201105051700.jar,4,false
org.eclipse.dltk.debug.ui,2.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.debug.ui_2.0.0.me201110311918.jar,4,false
org.eclipse.dltk.javascript.core,2.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.javascript.core_2.0.0.me201110311918.jar,4,false
org.eclipse.dltk.javascript.debug,1.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.javascript.debug_1.0.0.me201012090051.jar,4,false
org.eclipse.dltk.javascript.debug.ui,1.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.javascript.debug.ui_1.0.0.me201108091322.jar,4,false
org.eclipse.dltk.javascript.launching,1.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.javascript.launching_1.0.0.me201012090051.jar,4,false
org.eclipse.dltk.javascript.ui,1.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.javascript.ui_1.0.0.me201108091322.jar,4,false
org.eclipse.dltk.launching,2.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.launching_2.0.0.me201110311918.jar,4,false
org.eclipse.dltk.ui,1.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.dltk.ui_1.0.0.me201108091322.jar,4,false
org.eclipse.draw2d,3.7.0.v20110425-2050,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.draw2d_3.7.0.v20110425-2050.jar,4,false
org.eclipse.ecf,3.1.300.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf_3.1.300.v20110531-2218.jar,4,false
org.eclipse.ecf.filetransfer,5.0.0.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20110531-2218.jar,4,false
org.eclipse.ecf.identity,3.1.100.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf.identity_3.1.100.v20110531-2218.jar,4,false
org.eclipse.ecf.provider.filetransfer,3.2.0.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20110531-2218.jar,4,false
org.eclipse.ecf.provider.filetransfer.httpclient,4.0.0.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20110531-2218.jar,4,false
org.eclipse.ecf.provider.filetransfer.httpclient.ssl,1.0.0.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20110531-2218.jar,4,false
org.eclipse.ecf.provider.filetransfer.ssl,1.0.0.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20110531-2218.jar,4,false
org.eclipse.ecf.ssl,1.0.100.v20110531-2218,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ecf.ssl_1.0.100.v20110531-2218.jar,4,false
org.eclipse.emf,2.6.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf_2.6.0.v20110606-0949.jar,4,false
org.eclipse.emf.ant,2.7.0.v20100905-1633,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.ant_2.7.0.v20100905-1633.jar,4,false
org.eclipse.emf.codegen,2.6.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.codegen_2.6.0.v20110606-0949.jar,4,false
org.eclipse.emf.codegen.ecore,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.codegen.ecore_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.codegen.ecore.ui,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.codegen.ecore.ui_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.codegen.ui,2.6.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.codegen.ui_2.6.0.v20110606-0949.jar,4,false
org.eclipse.emf.common,2.7.0.v20110605-0747,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.common_2.7.0.v20110605-0747.jar,4,false
org.eclipse.emf.common.ui,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.common.ui_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.converter,2.5.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.converter_2.5.0.v20110606-0949.jar,4,false
org.eclipse.emf.databinding,1.2.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.databinding_1.2.0.v20110606-0949.jar,4,false
org.eclipse.emf.databinding.edit,1.2.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.databinding.edit_1.2.0.v20110606-0949.jar,4,false
org.eclipse.emf.ecore,2.7.0.v20110605-0747,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.ecore_2.7.0.v20110605-0747.jar,4,false
org.eclipse.emf.ecore.change,2.7.0.v20110408-2116,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.ecore.change_2.7.0.v20110408-2116.jar,4,false
org.eclipse.emf.ecore.change.edit,2.5.0.v20100521-1846,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.ecore.change.edit_2.5.0.v20100521-1846.jar,4,false
org.eclipse.emf.ecore.edit,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.ecore.edit_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.ecore.editor,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.ecore.editor_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.ecore.xmi,2.7.0.v20110520-1406,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.ecore.xmi_2.7.0.v20110520-1406.jar,4,false
org.eclipse.emf.edit,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.edit_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.edit.ui,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.edit.ui_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.exporter,2.6.0.v20100521-1846,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.exporter_2.6.0.v20100521-1846.jar,4,false
org.eclipse.emf.importer,2.6.0.v20100521-1846,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.importer_2.6.0.v20100521-1846.jar,4,false
org.eclipse.emf.importer.ecore,2.6.0.v20100521-1846,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.importer.ecore_2.6.0.v20100521-1846.jar,4,false
org.eclipse.emf.importer.java,2.6.0.v20100521-1846,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.importer.java_2.6.0.v20100521-1846.jar,4,false
org.eclipse.emf.importer.rose,2.6.0.v20100521-1846,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.importer.rose_2.6.0.v20100521-1846.jar,4,false
org.eclipse.emf.mapping,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping_2.7.0.v20110606-0949.jar,4,false
org.eclipse.emf.mapping.ecore,2.6.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping.ecore_2.6.0.v20110606-0949.jar,4,false
org.eclipse.emf.mapping.ecore.editor,2.6.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping.ecore.editor_2.6.0.v20110606-0949.jar,4,false
org.eclipse.emf.mapping.ecore2ecore,2.7.0.v20110331-2022,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping.ecore2ecore_2.7.0.v20110331-2022.jar,4,false
org.eclipse.emf.mapping.ecore2ecore.editor,2.5.0.v20110120-0110,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping.ecore2ecore.editor_2.5.0.v20110120-0110.jar,4,false
org.eclipse.emf.mapping.ecore2xml,2.7.0.v20110331-2022,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping.ecore2xml_2.7.0.v20110331-2022.jar,4,false
org.eclipse.emf.mapping.ecore2xml.ui,2.6.0.v20110120-0109,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping.ecore2xml.ui_2.6.0.v20110120-0109.jar,4,false
org.eclipse.emf.mapping.ui,2.6.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.mapping.ui_2.6.0.v20110606-0949.jar,4,false
org.eclipse.emf.transaction,1.4.0.v20100331-1738,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.transaction_1.4.0.v20100331-1738.jar,4,false
org.eclipse.emf.validation,1.4.0.v20100428-2315,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.validation_1.4.0.v20100428-2315.jar,4,false
org.eclipse.emf.workspace,1.4.0.v20100224-1706,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.emf.workspace_1.4.0.v20100224-1706.jar,4,false
org.eclipse.epf.common,1.5.0.v20110412_2200,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.epf.common_1.5.0.v20110412_2200/,4,false
org.eclipse.epf.common.ui,1.5.0.v20110303_0830,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.epf.common.ui_1.5.0.v20110303_0830.jar,4,false
org.eclipse.epf.richtext,1.6.0.v20110419_2200,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.epf.richtext_1.6.0.v20110419_2200/,4,false
org.eclipse.equinox.app,1.3.100.v20110321,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.app_1.3.100.v20110321.jar,4,false
org.eclipse.equinox.common,3.6.0.v20110523,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.common_3.6.0.v20110523.jar,2,true
org.eclipse.equinox.concurrent,1.0.200.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.concurrent_1.0.200.v20110502.jar,4,false
org.eclipse.equinox.ds,1.3.0.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.ds_1.3.0.v20110502.jar,2,true
org.eclipse.equinox.event,1.2.100.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.event_1.2.100.v20110502.jar,4,false
org.eclipse.equinox.frameworkadmin,2.0.0.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.frameworkadmin_2.0.0.v20110502-1955.jar,4,false
org.eclipse.equinox.frameworkadmin.equinox,1.0.300.v20110506,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.300.v20110506.jar,4,false
org.eclipse.equinox.http.jetty,2.0.100.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.http.jetty_2.0.100.v20110502.jar,4,false
org.eclipse.equinox.http.registry,1.1.100.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.http.registry_1.1.100.v20110502.jar,4,false
org.eclipse.equinox.http.servlet,1.1.200.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.http.servlet_1.1.200.v20110502.jar,4,false
org.eclipse.equinox.jsp.jasper,1.0.300.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.jsp.jasper_1.0.300.v20110502.jar,4,false
org.eclipse.equinox.jsp.jasper.registry,1.0.200.v20100503,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.200.v20100503.jar,4,false
org.eclipse.equinox.launcher,1.2.0.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar,4,false
org.eclipse.equinox.launcher.i18n.win32.win32.x86,3.2.0.v201103301700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.launcher.i18n.win32.win32.x86_3.2.0.v201103301700/,4,false
org.eclipse.equinox.launcher.win32.win32.x86,1.1.100.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502/,4,false
org.eclipse.equinox.p2.artifact.optimizers,1.0.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.artifact.optimizers_1.0.0.v201102081600.jar,4,false
org.eclipse.equinox.p2.artifact.processors,1.0.100.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.artifact.processors_1.0.100.v201102081600.jar,4,false
org.eclipse.equinox.p2.artifact.repository,1.1.100.v20110519,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.100.v20110519.jar,4,false
org.eclipse.equinox.p2.console,1.0.300.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.console_1.0.300.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.core,2.1.0.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.core_2.1.0.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.director,2.1.0.v20110504-1715,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.director_2.1.0.v20110504-1715.jar,4,false
org.eclipse.equinox.p2.director.app,1.0.300.v20110505,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20110505.jar,4,false
org.eclipse.equinox.p2.directorywatcher,1.0.300.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.discovery,1.0.100.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.discovery_1.0.100.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.discovery.compatibility,1.0.1.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.discovery.compatibility_1.0.1.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.engine,2.1.0.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.engine_2.1.0.v20110511.jar,4,false
org.eclipse.equinox.p2.extensionlocation,1.2.100.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110510.jar,4,false
org.eclipse.equinox.p2.garbagecollector,1.0.200.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110510.jar,4,false
org.eclipse.equinox.p2.jarprocessor,1.0.200.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.metadata,2.1.0.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20110510.jar,4,false
org.eclipse.equinox.p2.metadata.repository,1.2.0.v20110511-1359,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.0.v20110511-1359.jar,4,false
org.eclipse.equinox.p2.operations,2.1.0.v20110511-1821,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.operations_2.1.0.v20110511-1821.jar,4,false
org.eclipse.equinox.p2.publisher,1.2.0.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20110511.jar,4,false
org.eclipse.equinox.p2.publisher.eclipse,1.0.0.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.0.0.v20110511/,4,false
org.eclipse.equinox.p2.ql,2.0.100.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110510.jar,4,false
org.eclipse.equinox.p2.reconciler.dropins,1.1.100.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.100.v20110510.jar,4,true
org.eclipse.equinox.p2.repository,2.1.0.v20110601,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.repository_2.1.0.v20110601.jar,4,false
org.eclipse.equinox.p2.repository.tools,2.0.100.v20110512-1320,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20110512-1320.jar,4,false
org.eclipse.equinox.p2.sar,0.1.0,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.sar_0.1.0.jar,4,false
org.eclipse.equinox.p2.touchpoint.eclipse,2.1.0.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.0.v20110511.jar,4,false
org.eclipse.equinox.p2.touchpoint.natives,1.0.300.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.0.300.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.transport.ecf,1.0.0.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.0.v20110510.jar,4,false
org.eclipse.equinox.p2.ui,2.1.0.v20110601,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.ui_2.1.0.v20110601.jar,4,false
org.eclipse.equinox.p2.ui.discovery,1.0.0.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.ui.discovery_1.0.0.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.ui.importexport,1.0.0.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.0.v20110511.jar,4,false
org.eclipse.equinox.p2.ui.sdk,1.0.200.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.ui.sdk.scheduler,1.0.100.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.100.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.updatechecker,1.1.200.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110502-1955.jar,4,false
org.eclipse.equinox.p2.updatesite,1.0.300.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.p2.updatesite_1.0.300.v20110510.jar,4,false
org.eclipse.equinox.preferences,3.4.0.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.preferences_3.4.0.v20110502.jar,4,false
org.eclipse.equinox.registry,3.5.100.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.registry_3.5.100.v20110502.jar,4,false
org.eclipse.equinox.security,1.1.0.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.security_1.1.0.v20110502.jar,4,false
org.eclipse.equinox.security.ui,1.1.0.v20101004,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.security.ui_1.1.0.v20101004.jar,4,false
org.eclipse.equinox.security.win32.x86,1.0.200.v20100503,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.security.win32.x86_1.0.200.v20100503.jar,4,false
org.eclipse.equinox.simpleconfigurator,1.0.200.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.simpleconfigurator_1.0.200.v20110502-1955.jar,1,true
org.eclipse.equinox.simpleconfigurator.manipulator,2.0.0.v20110502-1955,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110502-1955.jar,4,false
org.eclipse.equinox.util,1.0.300.v20110502,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.equinox.util_1.0.300.v20110502.jar,4,false
org.eclipse.gef,3.7.0.v20110407-2050,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gef_3.7.0.v20110407-2050.jar,4,false
org.eclipse.gmf.runtime.common.core,1.4.1.v20101119-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.common.core_1.4.1.v20101119-2230.jar,4,false
org.eclipse.gmf.runtime.common.ui,1.5.0.v20101221-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.common.ui_1.5.0.v20101221-2230.jar,4,false
org.eclipse.gmf.runtime.common.ui.action,1.5.0.v20110607-1200,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.common.ui.action_1.5.0.v20110607-1200.jar,4,false
org.eclipse.gmf.runtime.common.ui.services,1.3.1.v20101118-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.common.ui.services_1.3.1.v20101118-2230.jar,4,false
org.eclipse.gmf.runtime.common.ui.services.action,1.4.0.v20100430-1518,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.common.ui.services.action_1.4.0.v20100430-1518.jar,4,false
org.eclipse.gmf.runtime.diagram.core,1.4.1.v20101221-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.diagram.core_1.4.1.v20101221-2230.jar,4,false
org.eclipse.gmf.runtime.diagram.ui,1.5.0.v20110309-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.diagram.ui_1.5.0.v20110309-2230.jar,4,false
org.eclipse.gmf.runtime.draw2d.ui,1.5.0.v20110505-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.draw2d.ui_1.5.0.v20110505-2230.jar,4,false
org.eclipse.gmf.runtime.draw2d.ui.render,1.4.1.v20101119-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.draw2d.ui.render_1.4.1.v20101119-2230.jar,4,false
org.eclipse.gmf.runtime.draw2d.ui.render.awt,1.4.1.v20101222-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.draw2d.ui.render.awt_1.4.1.v20101222-2230.jar,4,false
org.eclipse.gmf.runtime.emf.clipboard.core,1.5.0.v20110529-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.emf.clipboard.core_1.5.0.v20110529-2230.jar,4,false
org.eclipse.gmf.runtime.emf.commands.core,1.4.0.v20100423-2359,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.emf.commands.core_1.4.0.v20100423-2359.jar,4,false
org.eclipse.gmf.runtime.emf.core,1.4.1.v20101222-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.emf.core_1.4.1.v20101222-2230.jar,4,false
org.eclipse.gmf.runtime.emf.type.core,1.4.0.v20100423-2359,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.emf.type.core_1.4.0.v20100423-2359.jar,4,false
org.eclipse.gmf.runtime.emf.ui,1.2.0.v20090403-1720,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.emf.ui_1.2.0.v20090403-1720.jar,4,false
org.eclipse.gmf.runtime.gef.ui,1.4.1.v20101222-2230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.gef.ui_1.4.1.v20101222-2230.jar,4,false
org.eclipse.gmf.runtime.notation,1.5.0.v20110309-2159,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.gmf.runtime.notation_1.5.0.v20110309-2159.jar,4,false
org.eclipse.graphiti,0.8.0.v20110601-0826,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.graphiti_0.8.0.v20110601-0826.jar,4,false
org.eclipse.graphiti.mm,0.8.0.v20110603-1048,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.graphiti.mm_0.8.0.v20110603-1048.jar,4,false
org.eclipse.graphiti.pattern,0.8.0.v20110516-1053,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.graphiti.pattern_0.8.0.v20110516-1053.jar,4,false
org.eclipse.graphiti.ui,0.8.0.v20110606-1453,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.graphiti.ui_0.8.0.v20110606-1453.jar,4,false
org.eclipse.help,3.5.100.v20110426,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.help_3.5.100.v20110426.jar,4,false
org.eclipse.help.appserver,3.1.400.v20110425,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.help.appserver_3.1.400.v20110425.jar,4,false
org.eclipse.help.base,3.6.0.v201106131736,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.help.base_3.6.0.v201106131736.jar,4,false
org.eclipse.help.ui,3.5.100.v20110425,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.help.ui_3.5.100.v20110425.jar,4,false
org.eclipse.help.webapp,3.6.0.v20110518,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.help.webapp_3.6.0.v20110518.jar,4,false
org.eclipse.jdt,3.7.0.v201106131736,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt_3.7.0.v201106131736.jar,4,false
org.eclipse.jdt.apt.core,3.3.500.v20110420-1015,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.apt.core_3.3.500.v20110420-1015.jar,4,false
org.eclipse.jdt.apt.pluggable.core,1.0.400.v20110305-1450,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.apt.pluggable.core_1.0.400.v20110305-1450.jar,4,false
org.eclipse.jdt.apt.ui,3.3.300.v20110305-1450,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.apt.ui_3.3.300.v20110305-1450.jar,4,false
org.eclipse.jdt.compiler.apt,1.0.400.v0110509-1300,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.compiler.apt_1.0.400.v0110509-1300.jar,4,false
org.eclipse.jdt.compiler.tool,1.0.100.v_B61,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.compiler.tool_1.0.100.v_B61.jar,4,false
org.eclipse.jdt.core,3.7.0.v_B61,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.core_3.7.0.v_B61.jar,4,false
org.eclipse.jdt.core.manipulation,1.4.0.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.core.manipulation_1.4.0.v20110505-0800.jar,4,false
org.eclipse.jdt.debug,3.7.0.v20110509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.debug_3.7.0.v20110509/,4,false
org.eclipse.jdt.debug.ui,3.6.0.v20110512,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.debug.ui_3.6.0.v20110512.jar,4,false
org.eclipse.jdt.doc.user,3.7.0.v20110601-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.doc.user_3.7.0.v20110601-0800.jar,4,false
org.eclipse.jdt.junit,3.7.0.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.junit_3.7.0.v20110505-0800.jar,4,false
org.eclipse.jdt.junit.core,3.7.0.v20110518-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.junit.core_3.7.0.v20110518-0800.jar,4,false
org.eclipse.jdt.junit.runtime,3.4.300.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.junit.runtime_3.4.300.v20110505-0800.jar,4,false
org.eclipse.jdt.junit4.runtime,1.1.200.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.junit4.runtime_1.1.200.v20110505-0800.jar,4,false
org.eclipse.jdt.launching,3.6.0.v20110509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.launching_3.6.0.v20110509.jar,4,false
org.eclipse.jdt.ui,3.7.0.v20110531-1200,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jdt.ui_3.7.0.v20110531-1200.jar,4,false
org.eclipse.jem,2.0.500.v201104271400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jem_2.0.500.v201104271400.jar,4,false
org.eclipse.jem.beaninfo,2.0.300.v200905030615,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jem.beaninfo_2.0.300.v200905030615.jar,4,false
org.eclipse.jem.beaninfo.vm,2.0.300.v201004110600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jem.beaninfo.vm_2.0.300.v201004110600.jar,4,false
org.eclipse.jem.beaninfo.vm.common,2.0.300.v201004110600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jem.beaninfo.vm.common_2.0.300.v201004110600.jar,4,false
org.eclipse.jem.proxy,2.0.400.v201101101900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jem.proxy_2.0.400.v201101101900.jar,4,false
org.eclipse.jem.util,2.1.100.v201103021400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jem.util_2.1.100.v201103021400.jar,4,false
org.eclipse.jem.workbench,2.0.400.v201104251400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jem.workbench_2.0.400.v201104251400.jar,4,false
org.eclipse.jface,3.7.0.I20110522-1430,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jface_3.7.0.I20110522-1430.jar,4,false
org.eclipse.jface.databinding,1.5.0.I20100907-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jface.databinding_1.5.0.I20100907-0800.jar,4,false
org.eclipse.jface.text,3.7.0.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jface.text_3.7.0.v20110505-0800.jar,4,false
org.eclipse.jpt.common.branding,1.0.0.v201104050000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.common.branding_1.0.0.v201104050000.jar,4,false
org.eclipse.jpt.common.core,1.0.0.v201105180000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.common.core_1.0.0.v201105180000.jar,4,false
org.eclipse.jpt.common.eclipselink.branding,1.0.0.v201104050000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.common.eclipselink.branding_1.0.0.v201104050000.jar,4,false
org.eclipse.jpt.common.eclipselink.core,1.0.0.v201105180000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.common.eclipselink.core_1.0.0.v201105180000.jar,4,false
org.eclipse.jpt.common.ui,1.0.0.v201104120000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.common.ui_1.0.0.v201104120000.jar,4,false
org.eclipse.jpt.common.utility,2.0.0.v201105110001,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.common.utility_2.0.0.v201105110001.jar,4,false
org.eclipse.jpt.dbws.eclipselink.branding,1.0.0.v201103020003,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.dbws.eclipselink.branding_1.0.0.v201103020003.jar,4,false
org.eclipse.jpt.dbws.eclipselink.core.gen,1.0.0.v201104110000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.dbws.eclipselink.core.gen_1.0.0.v201104110000.jar,4,false
org.eclipse.jpt.dbws.eclipselink.ui,1.0.0.v201104110000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.dbws.eclipselink.ui_1.0.0.v201104110000.jar,4,false
org.eclipse.jpt.doc.user,1.4.1.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.doc.user_1.4.1.me201108021509.jar,4,false
org.eclipse.jpt.jaxb.branding,1.0.0.v201103020003,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.branding_1.0.0.v201103020003.jar,4,false
org.eclipse.jpt.jaxb.core,1.0.0.v201105240000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.core_1.0.0.v201105240000.jar,4,false
org.eclipse.jpt.jaxb.core.schemagen,1.0.100.v201104110000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.core.schemagen_1.0.100.v201104110000.jar,4,false
org.eclipse.jpt.jaxb.eclipselink.branding,1.0.0.v201103080000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.eclipselink.branding_1.0.0.v201103080000.jar,4,false
org.eclipse.jpt.jaxb.eclipselink.core,1.0.0.v201105180000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.eclipselink.core_1.0.0.v201105180000.jar,4,false
org.eclipse.jpt.jaxb.eclipselink.core.schemagen,1.1.0.v201104120000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.eclipselink.core.schemagen_1.1.0.v201104120000.jar,4,false
org.eclipse.jpt.jaxb.eclipselink.ui,1.1.0.v201105110000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.eclipselink.ui_1.1.0.v201105110000.jar,4,false
org.eclipse.jpt.jaxb.ui,1.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jaxb.ui_1.1.0.me201108091322.jar,4,false
org.eclipse.jpt.jpa.branding,2.4.0.v201103020003,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.branding_2.4.0.v201103020003.jar,4,false
org.eclipse.jpt.jpa.core,3.0.0.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.core_3.0.0.me201110280006.jar,4,false
org.eclipse.jpt.jpa.db,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.db_2.0.0.me201108091322.jar,4,false
org.eclipse.jpt.jpa.db.ui,2.0.0.v201104110000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.db.ui_2.0.0.v201104110000.jar,4,false
org.eclipse.jpt.jpa.eclipselink.branding,2.4.0.v201103020003,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.eclipselink.branding_2.4.0.v201103020003.jar,4,false
org.eclipse.jpt.jpa.eclipselink.core,2.0.0.v201105250000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.eclipselink.core_2.0.0.v201105250000.jar,4,false
org.eclipse.jpt.jpa.eclipselink.core.ddlgen,2.0.0.v201104190000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.eclipselink.core.ddlgen_2.0.0.v201104190000.jar,4,false
org.eclipse.jpt.jpa.eclipselink.ui,2.0.0.me201108101919,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.eclipselink.ui_2.0.0.me201108101919.jar,4,false
org.eclipse.jpt.jpa.gen,2.0.0.v201105190000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.gen_2.0.0.v201105190000.jar,4,false
org.eclipse.jpt.jpa.ui,3.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpa.ui_3.0.0.me201108091322.jar,4,false
org.eclipse.jpt.jpadiagrameditor.branding,1.0.0.v201103020000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpadiagrameditor.branding_1.0.0.v201103020000.jar,4,false
org.eclipse.jpt.jpadiagrameditor.doc.user,1.0.0.v201105120001,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpadiagrameditor.doc.user_1.0.0.v201105120001.jar,4,false
org.eclipse.jpt.jpadiagrameditor.ui,1.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jpt.jpadiagrameditor.ui_1.0.0.me201108091322.jar,4,false
org.eclipse.jsch.core,1.1.300.I20110514-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jsch.core_1.1.300.I20110514-0800.jar,4,false
org.eclipse.jsch.ui,1.1.300.I20110511-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jsch.ui_1.1.300.I20110511-0800.jar,4,false
org.eclipse.jsf.branding,3.2.0.v20100522,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jsf.branding_3.2.0.v20100522.jar,4,false
org.eclipse.jst.common.annotations.controller,1.1.300.v200908252030,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.common.annotations.controller_1.1.300.v200908252030.jar,4,false
org.eclipse.jst.common.annotations.core,1.1.300.v201004141630,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.common.annotations.core_1.1.300.v201004141630.jar,4,false
org.eclipse.jst.common.annotations.ui,1.1.300.v201002081900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.common.annotations.ui_1.1.300.v201002081900.jar,4,false
org.eclipse.jst.common.frameworks,1.1.500.v201104081500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.common.frameworks_1.1.500.v201104081500.jar,4,false
org.eclipse.jst.common.project.facet.core,1.4.200.v201103170302,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.common.project.facet.core_1.4.200.v201103170302.jar,4,false
org.eclipse.jst.common.project.facet.ui,1.4.200.v201008182133,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.common.project.facet.ui_1.4.200.v201008182133.jar,4,false
org.eclipse.jst.common.ui,1.0.100.v201105030440,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.common.ui_1.0.100.v201105030440.jar,4,false
org.eclipse.jst.ejb.ui,1.1.600.v201104261451,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ejb.ui_1.1.600.v201104261451.jar,4,false
org.eclipse.jst.ejb.ui.infopop,1.0.300.v2010022311013,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ejb.ui.infopop_1.0.300.v2010022311013.jar,4,false
org.eclipse.jst.j2ee,1.1.500.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee_1.1.500.me201110280006.jar,4,false
org.eclipse.jst.j2ee.core,1.2.100.v201105122000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.core_1.2.100.v201105122000.jar,4,false
org.eclipse.jst.j2ee.ejb,1.1.502.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.ejb_1.1.502.me201108091322.jar,4,false
org.eclipse.jst.j2ee.ejb.annotation.model,1.1.300.v201003112036,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.ejb.annotation.model_1.1.300.v201003112036.jar,4,false
org.eclipse.jst.j2ee.ejb.annotations.emitter,1.1.200.v200909290826,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.ejb.annotations.emitter_1.1.200.v200909290826.jar,4,false
org.eclipse.jst.j2ee.ejb.annotations.ui,1.1.200.v201004290730,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.ejb.annotations.ui_1.1.200.v201004290730.jar,4,false
org.eclipse.jst.j2ee.ejb.annotations.xdoclet,1.2.200.me201109061757,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.ejb.annotations.xdoclet_1.2.200.me201109061757.jar,4,false
org.eclipse.jst.j2ee.infopop,1.0.300.v200805140415,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.infopop_1.0.300.v200805140415.jar,4,false
org.eclipse.jst.j2ee.jca,1.1.400.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.jca_1.1.400.me201108021509.jar,4,false
org.eclipse.jst.j2ee.jca.ui,1.1.400.v201004150700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.jca.ui_1.1.400.v201004150700.jar,4,false
org.eclipse.jst.j2ee.navigator.ui,1.1.500.me201110280006,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.navigator.ui_1.1.500.me201110280006.jar,4,false
org.eclipse.jst.j2ee.ui,1.1.500.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.ui_1.1.500.me201110192133.jar,4,false
org.eclipse.jst.j2ee.web,1.1.500.me201109061757,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.web_1.1.500.me201109061757.jar,4,false
org.eclipse.jst.j2ee.webservice,1.1.400.v201004110600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.webservice_1.1.400.v201004110600.jar,4,false
org.eclipse.jst.j2ee.webservice.ui,1.1.500.v201105122000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.webservice.ui_1.1.500.v201105122000.jar,4,false
org.eclipse.jst.j2ee.xdoclet.runtime,1.1.300.v201004280700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.j2ee.xdoclet.runtime_1.1.300.v201004280700.jar,4,false
org.eclipse.jst.jee,1.0.401.me201110252317,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jee_1.0.401.me201110252317.jar,4,false
org.eclipse.jst.jee.ejb,1.0.301.v201007070821,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jee.ejb_1.0.301.v201007070821.jar,4,false
org.eclipse.jst.jee.ui,1.0.400.v201105122000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jee.ui_1.0.400.v201105122000.jar,4,false
org.eclipse.jst.jee.web,1.0.301.v201007070907,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jee.web_1.0.301.v201007070907.jar,4,false
org.eclipse.jst.jsf.apache.trinidad.tagsupport,1.1.200.v201104061711,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.apache.trinidad.tagsupport_1.1.200.v201104061711.jar,4,false
org.eclipse.jst.jsf.common,1.2.3.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.common_1.2.3.me201108091322.jar,4,false
org.eclipse.jst.jsf.common.runtime,1.1.0.v20100510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.common.runtime_1.1.0.v20100510.jar,4,false
org.eclipse.jst.jsf.common.ui,1.2.100.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.common.ui_1.2.100.me201108091322.jar,4,false
org.eclipse.jst.jsf.core,1.3.5.me201109051559,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.core_1.3.5.me201109051559.jar,4,false
org.eclipse.jst.jsf.facelet.core,1.0.100.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.facelet.core_1.0.100.me201108091322.jar,4,false
org.eclipse.jst.jsf.facelet.ui,1.0.1.v201104032306,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.facelet.ui_1.0.1.v201104032306.jar,4,false
org.eclipse.jst.jsf.facesconfig,1.2.2.v201105031140,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.facesconfig_1.2.2.v201105031140.jar,4,false
org.eclipse.jst.jsf.facesconfig.ui,1.2.2.v201103292152,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.facesconfig.ui_1.2.2.v201103292152.jar,4,false
org.eclipse.jst.jsf.standard.tagsupport,1.2.100.v201104061711,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.standard.tagsupport_1.2.100.v201104061711.jar,4,false
org.eclipse.jst.jsf.ui,1.3.2.me201108301958,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsf.ui_1.3.2.me201108301958.jar,4,false
org.eclipse.jst.jsp.core,1.2.400.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsp.core_1.2.400.me201110171954.jar,4,false
org.eclipse.jst.jsp.ui,1.1.600.me201110202245,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsp.ui_1.1.600.me201110202245.jar,4,false
org.eclipse.jst.jsp.ui.infopop,1.0.200.v201004150328,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.jsp.ui.infopop_1.0.200.v201004150328.jar,4,false
org.eclipse.jst.pagedesigner,1.3.3.me201108241556,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.pagedesigner_1.3.3.me201108241556.jar,4,false
org.eclipse.jst.pagedesigner.jsf.ui,1.2.100.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.pagedesigner.jsf.ui_1.2.100.me201108091322.jar,4,false
org.eclipse.jst.pagedesigner.jsp.core,1.2.0.v20100308,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.pagedesigner.jsp.core_1.2.0.v20100308.jar,4,false
org.eclipse.jst.server.core,1.2.202.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.core_1.2.202.me201110311918.jar,4,false
org.eclipse.jst.server.generic.core,1.0.700.v20101219,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.generic.core_1.0.700.v20101219.jar,4,false
org.eclipse.jst.server.generic.jboss,1.6.1.v200904151730,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.generic.jboss_1.6.1.v200904151730/,4,false
org.eclipse.jst.server.generic.jonas,1.5.205.v200805140145,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.generic.jonas_1.5.205.v200805140145/,4,false
org.eclipse.jst.server.generic.oc4j,1.5.206.v20090812,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.generic.oc4j_1.5.206.v20090812/,4,false
org.eclipse.jst.server.generic.ui,1.0.505.v20100428,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.generic.ui_1.0.505.v20100428.jar,4,false
org.eclipse.jst.server.preview.adapter,1.1.100.v20100308,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.preview.adapter_1.1.100.v20100308.jar,4,false
org.eclipse.jst.server.tomcat.core,1.1.300.v20110427,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.tomcat.core_1.1.300.v20110427.jar,4,false
org.eclipse.jst.server.tomcat.ui,1.1.200.v20100418,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.tomcat.ui_1.1.200.v20100418.jar,4,false
org.eclipse.jst.server.ui,1.1.202.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.ui_1.1.202.me201110311918.jar,4,false
org.eclipse.jst.server.ui.infopop,1.0.400.v200805140145,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.ui.infopop_1.0.400.v200805140145.jar,4,false
org.eclipse.jst.server.websphere.core,1.0.302.v20080620,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.server.websphere.core_1.0.302.v20080620/,4,false
org.eclipse.jst.servlet.ui,1.1.500.me201110062148,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.servlet.ui_1.1.500.me201110062148.jar,4,false
org.eclipse.jst.servlet.ui.infopop,1.0.500.v201105122000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.servlet.ui.infopop_1.0.500.v201105122000.jar,4,false
org.eclipse.jst.standard.schemas,1.2.0.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.standard.schemas_1.2.0.me201108021509.jar,4,false
org.eclipse.jst.ws,1.0.508.v201104071820,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws_1.0.508.v201104071820.jar,4,false
org.eclipse.jst.ws.axis.consumption.core,1.0.407.v201104071820,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis.consumption.core_1.0.407.v201104071820.jar,4,false
org.eclipse.jst.ws.axis.consumption.ui,1.0.505.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis.consumption.ui_1.0.505.v201004211805.jar,4,false
org.eclipse.jst.ws.axis.creation.ui,1.0.700.v201104070312,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis.creation.ui_1.0.700.v201104070312.jar,4,false
org.eclipse.jst.ws.axis.infopop,1.0.300.v200805140230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis.infopop_1.0.300.v200805140230.jar,4,false
org.eclipse.jst.ws.axis2.consumption.core,1.0.105.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis2.consumption.core_1.0.105.v201004211805.jar,4,false
org.eclipse.jst.ws.axis2.consumption.ui,1.0.103.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis2.consumption.ui_1.0.103.v201004211805.jar,4,false
org.eclipse.jst.ws.axis2.core,1.0.204.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis2.core_1.0.204.v201004211805.jar,4,false
org.eclipse.jst.ws.axis2.creation.core,1.0.106.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis2.creation.core_1.0.106.v201004211805.jar,4,false
org.eclipse.jst.ws.axis2.creation.ui,1.0.104.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis2.creation.ui_1.0.104.v201004211805.jar,4,false
org.eclipse.jst.ws.axis2.ui,1.0.303.v201003110431,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis2.ui_1.0.303.v201003110431.jar,4,false
org.eclipse.jst.ws.axis2.ui.doc.user,1.0.100.v201005192217,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.axis2.ui.doc.user_1.0.100.v201005192217.jar,4,false
org.eclipse.jst.ws.consumption,1.0.600.v201103082016,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.consumption_1.0.600.v201103082016.jar,4,false
org.eclipse.jst.ws.consumption.infopop,1.0.300.v200805140230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.consumption.infopop_1.0.300.v200805140230.jar,4,false
org.eclipse.jst.ws.consumption.ui,1.1.400.v201103082016,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.consumption.ui_1.1.400.v201103082016.jar,4,false
org.eclipse.jst.ws.consumption.ui.doc.user,1.0.600.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.consumption.ui.doc.user_1.0.600.me201012090051.jar,4,false
org.eclipse.jst.ws.creation.ejb.ui,1.0.201.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.creation.ejb.ui_1.0.201.v201004211805.jar,4,false
org.eclipse.jst.ws.creation.ui,1.0.609.v201103082016,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.creation.ui_1.0.609.v201103082016.jar,4,false
org.eclipse.jst.ws.doc.user,1.0.600.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.doc.user_1.0.600.me201012090051.jar,4,false
org.eclipse.jst.ws.infopop,1.0.300.v200805140230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.infopop_1.0.300.v200805140230.jar,4,false
org.eclipse.jst.ws.jaxrs.core,1.0.300.v201011231608,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.jaxrs.core_1.0.300.v201011231608.jar,4,false
org.eclipse.jst.ws.jaxrs.ui,1.0.400.v201104070312,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.jaxrs.ui_1.0.400.v201104070312.jar,4,false
org.eclipse.jst.ws.uddiregistry,1.0.500.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.uddiregistry_1.0.500.v201004211805.jar,4,false
org.eclipse.jst.ws.ui,1.0.403.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.jst.ws.ui_1.0.403.v201004211805.jar,4,false
org.eclipse.ltk.core.refactoring,3.5.200.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ltk.core.refactoring_3.5.200.v20110505-0800.jar,4,false
org.eclipse.ltk.ui.refactoring,3.6.0.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ltk.ui.refactoring_3.6.0.v20110505-0800.jar,4,false
org.eclipse.m2e.archetype.common,1.0.0.20110607-2117,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.archetype.common_1.0.0.20110607-2117/,4,false
org.eclipse.m2e.core,1.0.0.me201110301321,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.core_1.0.0.me201110301321.jar,4,false
org.eclipse.m2e.core.ui,1.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.core.ui_1.0.0.me201110311918.jar,4,false
org.eclipse.m2e.discovery,1.0.0.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.discovery_1.0.0.me201108021509.jar,4,false
org.eclipse.m2e.editor,1.0.0.me201109141806,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.editor_1.0.0.me201109141806.jar,4,false
org.eclipse.m2e.editor.xml,1.0.0.me201108251618,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.editor.xml_1.0.0.me201108251618.jar,4,false
org.eclipse.m2e.jdt,1.0.0.me201110252317,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.jdt_1.0.0.me201110252317.jar,4,false
org.eclipse.m2e.launching,1.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.launching_1.0.0.me201110311918.jar,4,false
org.eclipse.m2e.lifecyclemapping.defaults,1.0.0.20110607-2117,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.lifecyclemapping.defaults_1.0.0.20110607-2117/,4,false
org.eclipse.m2e.logback.appender,1.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.logback.appender_1.0.0.me201110311918.jar,4,false
org.eclipse.m2e.logback.configuration,1.0.0.20110607-2117,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.logback.configuration_1.0.0.20110607-2117.jar,4,true
org.eclipse.m2e.maven.indexer,1.0.0.20110607-2117,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.maven.indexer_1.0.0.20110607-2117/,4,false
org.eclipse.m2e.maven.runtime,1.0.0.me201109061757,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.maven.runtime_1.0.0.me201109061757/,4,false
org.eclipse.m2e.model.edit,1.0.0.20110607-2117,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.model.edit_1.0.0.20110607-2117.jar,4,false
org.eclipse.m2e.refactoring,1.0.0.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.refactoring_1.0.0.me201109222040.jar,4,false
org.eclipse.m2e.scm,1.0.0.me201108120614,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.m2e.scm_1.0.0.me201108120614.jar,4,false
org.eclipse.maynstall.client.core,0.5.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.client.core_0.5.0.v201102081600.jar,4,false
org.eclipse.maynstall.client.model.provider,0.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.client.model.provider_0.2.0.v201102081600.jar,4,false
org.eclipse.maynstall.common.type,0.5.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.common.type_0.5.0.v201102081600.jar,4,false
org.eclipse.maynstall.common.util,0.5.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.common.util_0.5.0.v201102081600.jar,4,false
org.eclipse.maynstall.model.annotations,1.0.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.model.annotations_1.0.0.v201102081600.jar,4,false
org.eclipse.maynstall.model.core,0.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.model.core_0.2.0.v201102081600.jar,4,false
org.eclipse.maynstall.model.provider.common,0.2.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.model.provider.common_0.2.0.v201102081600.jar,4,false
org.eclipse.maynstall.p2.common.ui,0.2.1.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.maynstall.p2.common.ui_0.2.1.v201102081600.jar,4,false
org.eclipse.ocl,3.1.0.v20110606-1427,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ocl_3.1.0.v20110606-1427.jar,4,false
org.eclipse.ocl.ecore,3.1.0.v20110510-2118,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ocl.ecore_3.1.0.v20110510-2118.jar,4,false
org.eclipse.osgi,3.7.0.v20110613,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.osgi_3.7.0.v20110613.jar,-1,true
org.eclipse.osgi.services,3.3.0.v20110513,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.osgi.services_3.3.0.v20110513.jar,4,false
org.eclipse.osgi.util,3.2.200.v20110110,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.osgi.util_3.2.200.v20110110.jar,4,false
org.eclipse.pde,3.6.100.v201106131736,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde_3.6.100.v201106131736.jar,4,false
org.eclipse.pde.api.tools,1.0.300.v20110523-1600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.api.tools_1.0.300.v20110523-1600.jar,4,false
org.eclipse.pde.api.tools.ui,1.0.300.v20110523-1600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.api.tools.ui_1.0.300.v20110523-1600.jar,4,false
org.eclipse.pde.build,3.7.0.v20110512-1320,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/,4,false
org.eclipse.pde.core,3.7.0.v20110603,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.core_3.7.0.v20110603.jar,4,false
org.eclipse.pde.doc.user,3.7.0.v20110601-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.doc.user_3.7.0.v20110601-0800.jar,4,false
org.eclipse.pde.ds.core,1.0.100.v20100601,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.ds.core_1.0.100.v20100601.jar,4,false
org.eclipse.pde.ds.ui,1.0.100.v20110516,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.ds.ui_1.0.100.v20110516.jar,4,false
org.eclipse.pde.junit.runtime,3.4.100.v20110406,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.junit.runtime_3.4.100.v20110406.jar,4,false
org.eclipse.pde.launching,3.6.0.v20110506,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.launching_3.6.0.v20110506.jar,4,false
org.eclipse.pde.runtime,3.4.200.v20110508,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.runtime_3.4.200.v20110508.jar,4,false
org.eclipse.pde.ua.core,1.0.100.v20110516,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.ua.core_1.0.100.v20110516.jar,4,false
org.eclipse.pde.ua.ui,1.0.100.v20110516,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.ua.ui_1.0.100.v20110516.jar,4,false
org.eclipse.pde.ui,3.6.100.v20110603,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.ui_3.6.100.v20110603.jar,4,false
org.eclipse.pde.ui.templates,3.4.400.v20110516,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.pde.ui.templates_3.4.400.v20110516.jar,4,false
org.eclipse.persistence.annotations,1.0.0.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.annotations_1.0.0.v201102081600.jar,4,false
org.eclipse.persistence.antlr,2.3.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.antlr_2.3.0.v20110604-r9504.jar,4,false
org.eclipse.persistence.asm,2.3.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.asm_2.3.0.v20110604-r9504.jar,4,false
org.eclipse.persistence.core,2.3.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.core_2.3.0.v20110604-r9504.jar,4,false
org.eclipse.persistence.dbws,2.3.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.dbws_2.3.0.v20110604-r9504.jar,4,false
org.eclipse.persistence.dbws.builder,2.3.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.dbws.builder_2.3.0.v20110604-r9504.jar,4,false
org.eclipse.persistence.jpa,2.3.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.jpa_2.3.0.v20110604-r9504.jar,4,false
org.eclipse.persistence.jpa.jpql,1.0.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.jpa.jpql_1.0.0.v20110604-r9504.jar,4,false
org.eclipse.persistence.moxy,2.3.0.v20110604-r9504,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.persistence.moxy_2.3.0.v20110604-r9504.jar,4,false
org.eclipse.platform,3.7.0.v201106131736,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.platform_3.7.0.v201106131736/,4,false
org.eclipse.platform.doc.user,3.7.0.v20110601-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.platform.doc.user_3.7.0.v20110601-0800.jar,4,false
org.eclipse.rcp,3.7.0.v201106131736,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.rcp_3.7.0.v201106131736.jar,4,false
org.eclipse.sdk,3.7.0.v201106131736,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.sdk_3.7.0.v201106131736/,4,false
org.eclipse.search,3.7.0.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.search_3.7.0.v20110505-0800.jar,4,false
org.eclipse.swt,3.7.0.v3735b,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.swt_3.7.0.v3735b.jar,4,false
org.eclipse.swt.win32.win32.x86,3.7.0.v3735b,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.swt.win32.win32.x86_3.7.0.v3735b.jar,4,false
org.eclipse.team.core,3.6.0.I20110525-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.team.core_3.6.0.I20110525-0800.jar,4,false
org.eclipse.team.cvs.core,3.3.400.I20110510-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.team.cvs.core_3.3.400.I20110510-0800.jar,4,false
org.eclipse.team.cvs.ssh2,3.2.300.I20110511-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.team.cvs.ssh2_3.2.300.I20110511-0800.jar,4,false
org.eclipse.team.cvs.ui,3.3.400.I20110510-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.team.cvs.ui_3.3.400.I20110510-0800.jar,4,false
org.eclipse.team.ui,3.6.100.I20110525-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.team.ui_3.6.100.I20110525-0800.jar,4,false
org.eclipse.text,3.5.100.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.text_3.5.100.v20110505-0800.jar,4,false
org.eclipse.ui,3.7.0.I20110602-0100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui_3.7.0.I20110602-0100.jar,4,false
org.eclipse.ui.browser,3.3.100.v20110426,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.browser_3.3.100.v20110426.jar,4,false
org.eclipse.ui.cheatsheets,3.4.100.v20110425,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.cheatsheets_3.4.100.v20110425.jar,4,false
org.eclipse.ui.console,3.5.100.v20110511,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.console_3.5.100.v20110511.jar,4,false
org.eclipse.ui.editors,3.7.0.v20110517-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.editors_3.7.0.v20110517-0800.jar,4,false
org.eclipse.ui.externaltools,3.2.0.v20110506,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.externaltools_3.2.0.v20110506.jar,4,false
org.eclipse.ui.forms,3.5.100.v20110425,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.forms_3.5.100.v20110425.jar,4,false
org.eclipse.ui.ide,3.7.0.I20110519-0100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.ide_3.7.0.I20110519-0100.jar,4,false
org.eclipse.ui.ide.application,1.0.300.I20110306-2000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.ide.application_1.0.300.I20110306-2000.jar,4,false
org.eclipse.ui.intro,3.4.100.v20110425,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.intro_3.4.100.v20110425.jar,4,false
org.eclipse.ui.intro.universal,3.2.500.v20110510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510/,4,false
org.eclipse.ui.navigator,3.5.100.I20110524-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.navigator_3.5.100.I20110524-0800.jar,4,false
org.eclipse.ui.navigator.resources,3.4.300.I20110421-1800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.navigator.resources_3.4.300.I20110421-1800.jar,4,false
org.eclipse.ui.net,1.2.100.I20110511-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.net_1.2.100.I20110511-0800.jar,4,false
org.eclipse.ui.presentations.r21,3.2.200.I20100517-1500,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.presentations.r21_3.2.200.I20100517-1500.jar,4,false
org.eclipse.ui.views,3.6.0.I20110412-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.views_3.6.0.I20110412-0800.jar,4,false
org.eclipse.ui.views.log,1.0.200.v20110404,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.views.log_1.0.200.v20110404.jar,4,false
org.eclipse.ui.views.properties.tabbed,3.5.200.I20110201-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.views.properties.tabbed_3.5.200.I20110201-0800.jar,4,false
org.eclipse.ui.win32,3.2.200.I20100509-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.win32_3.2.200.I20100509-0800.jar,4,false
org.eclipse.ui.workbench,3.7.0.I20110519-0100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.workbench_3.7.0.I20110519-0100.jar,4,false
org.eclipse.ui.workbench.compatibility,3.2.100.I20110413-1600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600/,4,false
org.eclipse.ui.workbench.texteditor,3.7.0.v20110505-0800,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.ui.workbench.texteditor_3.7.0.v20110505-0800.jar,4,false
org.eclipse.uml2,3.2.0.v201101271655,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2_3.2.0.v201101271655.jar,4,false
org.eclipse.uml2.codegen.ecore,1.7.0.v201105172306,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.codegen.ecore_1.7.0.v201105172306.jar,4,false
org.eclipse.uml2.codegen.ecore.ui,1.6.100.v201008301510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.codegen.ecore.ui_1.6.100.v201008301510.jar,4,false
org.eclipse.uml2.common,1.6.0.v201105021727,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.common_1.6.0.v201105021727.jar,4,false
org.eclipse.uml2.common.edit,1.5.0.v200905041045,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.common.edit_1.5.0.v200905041045.jar,4,false
org.eclipse.uml2.uml,3.2.0.v201105231350,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.uml_3.2.0.v201105231350.jar,4,false
org.eclipse.uml2.uml.ecore.exporter,2.4.100.v201008301510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.uml.ecore.exporter_2.4.100.v201008301510.jar,4,false
org.eclipse.uml2.uml.ecore.importer,2.4.100.v201008301510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.uml.ecore.importer_2.4.100.v201008301510.jar,4,false
org.eclipse.uml2.uml.edit,3.1.100.v201009281840,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.uml.edit_3.1.100.v201009281840.jar,4,false
org.eclipse.uml2.uml.editor,2.2.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.uml.editor_2.2.0.me201003052220.jar,4,false
org.eclipse.uml2.uml.resources,3.1.100.v201008191510,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.uml2.uml.resources_3.1.100.v201008191510.jar,4,false
org.eclipse.update.configurator,3.3.100.v20100512,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.update.configurator_3.3.100.v20100512.jar,4,false
org.eclipse.update.core,3.2.500.v20110330,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.update.core_3.2.500.v20110330.jar,4,false
org.eclipse.update.core.win32,3.2.200.v20100512,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.update.core.win32_3.2.200.v20100512.jar,4,false
org.eclipse.update.scheduler,3.2.300.v20100512,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.update.scheduler_3.2.300.v20100512.jar,4,false
org.eclipse.update.ui,3.2.300.v20100512,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.update.ui_3.2.300.v20100512.jar,4,false
org.eclipse.wst.command.env,1.0.409.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.command.env_1.0.409.v201004211805.jar,4,false
org.eclipse.wst.command.env.core,1.0.205.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.command.env.core_1.0.205.v201004211805.jar,4,false
org.eclipse.wst.command.env.infopop,1.0.100.v200805301544,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.command.env.infopop_1.0.100.v200805301544.jar,4,false
org.eclipse.wst.command.env.ui,1.1.103.v201102260635,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.command.env.ui_1.1.103.v201102260635.jar,4,false
org.eclipse.wst.common.core,1.2.0.v200908252030,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.core_1.2.0.v200908252030.jar,4,false
org.eclipse.wst.common.emf,1.2.100.v201101101900,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.emf_1.2.100.v201101101900.jar,4,false
org.eclipse.wst.common.emfworkbench.integration,1.2.100.v201011172300,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.emfworkbench.integration_1.2.100.v201011172300.jar,4,false
org.eclipse.wst.common.environment,1.0.400.v200912181832,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.environment_1.0.400.v200912181832.jar,4,false
org.eclipse.wst.common.frameworks,1.2.100.v201105122000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.frameworks_1.2.100.v201105122000.jar,4,false
org.eclipse.wst.common.frameworks.ui,1.2.100.v201105122000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.frameworks.ui_1.2.100.v201105122000.jar,4,false
org.eclipse.wst.common.infopop,1.0.300.v201004280700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.infopop_1.0.300.v201004280700.jar,4,false
org.eclipse.wst.common.modulecore,1.2.100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.modulecore_1.2.100.jar,4,false
org.eclipse.wst.common.modulecore.ui,1.0.100.me201110192133,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.modulecore.ui_1.0.100.me201110192133.jar,4,false
org.eclipse.wst.common.project.facet.core,1.4.200.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.project.facet.core_1.4.200.me201110311918.jar,4,false
org.eclipse.wst.common.project.facet.ui,1.4.200.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.project.facet.ui_1.4.200.me201110311918.jar,4,false
org.eclipse.wst.common.snippets,1.2.100.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.snippets_1.2.100.me201108021509.jar,4,false
org.eclipse.wst.common.ui,1.1.500.v200911190730,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.ui_1.1.500.v200911190730.jar,4,false
org.eclipse.wst.common.uriresolver,1.1.401.v201004280700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.common.uriresolver_1.1.401.v201004280700.jar,4,false
org.eclipse.wst.css.core,1.1.500.v201104191926,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.css.core_1.1.500.v201104191926.jar,4,false
org.eclipse.wst.css.ui,1.0.600.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.css.ui_1.0.600.me201108091322.jar,4,false
org.eclipse.wst.dtd.core,1.1.500.v201103300335,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.dtd.core_1.1.500.v201103300335.jar,4,false
org.eclipse.wst.dtd.ui,1.0.600.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.dtd.ui_1.0.600.me201108091322.jar,4,false
org.eclipse.wst.dtd.ui.infopop,1.0.400.v201008112018,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.dtd.ui.infopop_1.0.400.v201008112018.jar,4,false
org.eclipse.wst.html.core,1.1.500.me201110062148,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.html.core_1.1.500.me201110062148.jar,4,false
org.eclipse.wst.html.ui,1.0.600.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.html.ui_1.0.600.me201109222040.jar,4,false
org.eclipse.wst.html.ui.infopop,1.0.200.v201004150328,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.html.ui.infopop_1.0.200.v201004150328.jar,4,false
org.eclipse.wst.internet.cache,1.0.400.v201004280700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.internet.cache_1.0.400.v201004280700.jar,4,false
org.eclipse.wst.internet.monitor.core,1.0.505.v20110419,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.internet.monitor.core_1.0.505.v20110419.jar,4,false
org.eclipse.wst.internet.monitor.ui,1.0.506.v20110419,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.internet.monitor.ui_1.0.506.v20110419.jar,4,false
org.eclipse.wst.jsdt.atfdebug,0.0.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.atfdebug_0.0.1.me201108091322.jar,4,false
org.eclipse.wst.jsdt.core,1.1.100.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.core_1.1.100.me201109222040.jar,4,false
org.eclipse.wst.jsdt.manipulation,1.0.300.v201104272153,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.manipulation_1.0.300.v201104272153.jar,4,false
org.eclipse.wst.jsdt.support.firefox,1.0.400.v201008112000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.support.firefox_1.0.400.v201008112000.jar,4,false
org.eclipse.wst.jsdt.support.ie,1.0.400.v201008112000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.support.ie_1.0.400.v201008112000.jar,4,false
org.eclipse.wst.jsdt.ui,1.1.100.me201110242305,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.ui_1.1.100.me201110242305.jar,4,false
org.eclipse.wst.jsdt.web.core,1.0.400.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.web.core_1.0.400.me201109222040.jar,4,false
org.eclipse.wst.jsdt.web.support.jsp,1.0.400.me201108101919,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.web.support.jsp_1.0.400.me201108101919.jar,4,false
org.eclipse.wst.jsdt.web.ui,1.0.400.me201110301321,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.jsdt.web.ui_1.0.400.me201110301321.jar,4,false
org.eclipse.wst.server.core,1.1.302.v20110518,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.core_1.1.302.v20110518.jar,4,false
org.eclipse.wst.server.discovery,1.0.200.v20110518,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.discovery_1.0.200.v20110518.jar,4,false
org.eclipse.wst.server.http.core,1.0.200.v20090429,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.http.core_1.0.200.v20090429.jar,4,false
org.eclipse.wst.server.http.ui,1.0.200.v20090113,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.http.ui_1.0.200.v20090113.jar,4,false
org.eclipse.wst.server.preview,1.1.100.v20091208,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.preview_1.1.100.v20091208.jar,4,false
org.eclipse.wst.server.preview.adapter,1.1.0.v20090311b,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.preview.adapter_1.1.0.v20090311b.jar,4,false
org.eclipse.wst.server.ui,1.1.305.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.ui_1.1.305.me201108091322.jar,4,false
org.eclipse.wst.server.ui.infopop,1.1.100.v201005192130,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.server.ui.infopop_1.1.100.v201005192130.jar,4,false
org.eclipse.wst.sse.core,1.1.600.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.sse.core_1.1.600.me201109222040.jar,4,false
org.eclipse.wst.sse.ui,1.3.0.me201109222040,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.sse.ui_1.3.0.me201109222040.jar,4,false
org.eclipse.wst.sse.ui.infopop,1.0.300.v201004150328,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.sse.ui.infopop_1.0.300.v201004150328.jar,4,false
org.eclipse.wst.standard.schemas,1.0.400.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.standard.schemas_1.0.400.me201108021509.jar,4,false
org.eclipse.wst.validation,1.2.300.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.validation_1.2.300.me201108091322.jar,4,false
org.eclipse.wst.validation.infopop,1.0.300.v200806041506,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.validation.infopop_1.0.300.v200806041506.jar,4,false
org.eclipse.wst.validation.ui,1.2.204.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.validation.ui_1.2.204.me201108091322.jar,4,false
org.eclipse.wst.web,1.1.500.v201104251400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.web_1.1.500.v201104251400.jar,4,false
org.eclipse.wst.web.ui,1.1.400.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.web.ui_1.1.400.me201108091322.jar,4,false
org.eclipse.wst.web.ui.infopop,1.0.300.v200805140415,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.web.ui.infopop_1.0.300.v200805140415.jar,4,false
org.eclipse.wst.ws,1.1.203.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.ws_1.1.203.v201004211805.jar,4,false
org.eclipse.wst.ws.explorer,1.0.607.v201103082002,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.ws.explorer_1.0.607.v201103082002.jar,4,false
org.eclipse.wst.ws.infopop,1.0.300.v200805140230,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.ws.infopop_1.0.300.v200805140230.jar,4,false
org.eclipse.wst.ws.parser,1.0.403.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.ws.parser_1.0.403.v201004211805.jar,4,false
org.eclipse.wst.ws.service.policy,1.0.303.v201009221810,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.ws.service.policy_1.0.303.v201009221810.jar,4,false
org.eclipse.wst.ws.service.policy.ui,1.0.202.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.ws.service.policy.ui_1.0.202.me201108091322.jar,4,false
org.eclipse.wst.ws.ui,1.1.200.v201004211805,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.ws.ui_1.1.200.v201004211805.jar,4,false
org.eclipse.wst.wsdl,1.2.201.v201103211934,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.wsdl_1.2.201.v201103211934.jar,4,false
org.eclipse.wst.wsdl.ui,1.2.402.v201105050214,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.wsdl.ui_1.2.402.v201105050214.jar,4,false
org.eclipse.wst.wsdl.ui.doc.user,1.0.700.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.wsdl.ui.doc.user_1.0.700.me201012090051.jar,4,false
org.eclipse.wst.wsdl.validation,1.1.502.v201104071820,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.wsdl.validation_1.1.502.v201104071820.jar,4,false
org.eclipse.wst.wsi,1.0.401.me201109151924,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.wsi_1.0.401.me201109151924.jar,4,false
org.eclipse.wst.wsi.ui,1.0.502.v201104071820,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.wsi.ui_1.0.502.v201104071820.jar,4,false
org.eclipse.wst.wsi.ui.doc.user,1.0.700.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.wsi.ui.doc.user_1.0.700.me201108021509.jar,4,false
org.eclipse.wst.xml.core,1.1.600.me201110171954,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.core_1.1.600.me201110171954.jar,4,false
org.eclipse.wst.xml.ui,1.1.200.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.ui_1.1.200.me201108091322.jar,4,false
org.eclipse.wst.xml.ui.infopop,1.0.400.v201004292007,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.ui.infopop_1.0.400.v201004292007.jar,4,false
org.eclipse.wst.xml.xpath.core,1.2.0.v201105030025,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.xpath.core_1.2.0.v201105030025.jar,4,false
org.eclipse.wst.xml.xpath.ui,1.1.100.v201105030025,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.xpath.ui_1.1.100.v201105030025.jar,4,false
org.eclipse.wst.xml.xpath2,1.1.0.v200910101444,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.xpath2_1.1.0.v200910101444/,4,false
org.eclipse.wst.xml.xpath2.processor,2.0.0.v201105120439,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.xpath2.processor_2.0.0.v201105120439.jar,4,false
org.eclipse.wst.xml.xpath2.wtptypes,2.0.0.v201103212215,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xml.xpath2.wtptypes_2.0.0.v201103212215.jar,4,false
org.eclipse.wst.xsd.core,1.1.600.v201104070312,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsd.core_1.1.600.v201104070312.jar,4,false
org.eclipse.wst.xsd.ui,1.2.404.me201108151727,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsd.ui_1.2.404.me201108151727.jar,4,false
org.eclipse.wst.xsl,1.2.0.v201009121641,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl_1.2.0.v201009121641.jar,4,false
org.eclipse.wst.xsl.core,1.1.100.v201102270516,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.core_1.1.100.v201102270516.jar,4,false
org.eclipse.wst.xsl.debug.ui,1.0.200.v201101281837,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.debug.ui_1.0.200.v201101281837.jar,4,false
org.eclipse.wst.xsl.exslt.core,1.0.0.v201005240426,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.exslt.core_1.0.0.v201005240426.jar,4,false
org.eclipse.wst.xsl.exslt.ui,1.0.0.v201006012005,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.exslt.ui_1.0.0.v201006012005.jar,4,false
org.eclipse.wst.xsl.jaxp.debug,1.0.200.v201103081922,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.jaxp.debug_1.0.200.v201103081922.jar,4,false
org.eclipse.wst.xsl.jaxp.debug.ui,1.0.200.v201103081922,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.jaxp.debug.ui_1.0.200.v201103081922.jar,4,false
org.eclipse.wst.xsl.jaxp.launching,1.0.200.v201103081922,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.jaxp.launching_1.0.200.v201103081922.jar,4,false
org.eclipse.wst.xsl.launching,1.0.200.v201103081922,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.launching_1.0.200.v201103081922.jar,4,false
org.eclipse.wst.xsl.saxon,1.0.200.v201103081922,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.saxon_1.0.200.v201103081922.jar,4,false
org.eclipse.wst.xsl.ui,1.1.200.v201103082057,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.ui_1.1.200.v201103082057.jar,4,false
org.eclipse.wst.xsl.xalan,1.0.100.v201103081922,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.wst.xsl.xalan_1.0.100.v201103081922.jar,4,false
org.eclipse.xsd,2.7.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.xsd_2.7.0.v20110606-0949.jar,4,false
org.eclipse.xsd.edit,2.6.0.v20110606-0949,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.eclipse.xsd.edit_2.6.0.v20110606-0949.jar,4,false
org.exolab.castor.xml,1.3.1.v201102081600,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.exolab.castor.xml_1.3.1.v201102081600.jar,4,false
org.h2,1.1.117.v201105142352,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.h2_1.1.117.v201105142352.jar,4,false
org.hamcrest.core,1.1.0.v20090501071000,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.hamcrest.core_1.1.0.v20090501071000.jar,4,false
org.hibernate.eclipse.jdt.ui,3.2.4.CR1-me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.hibernate.eclipse.jdt.ui_3.2.4.CR1-me201108091322.jar,4,false
org.icefaces.eclipse.jst.pagedesigner,9.0.1.me201106241918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.icefaces.eclipse.jst.pagedesigner_9.0.1.me201106241918/,4,false
org.jboss.netty,3.2.4.Final-201106072137,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.netty_3.2.4.Final-201106072137.jar,4,false
org.jboss.tools.common,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common_2.0.0.me201108091322/,4,false
org.jboss.tools.common.el.core,2.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.el.core_2.0.0.me201110311918.jar,4,false
org.jboss.tools.common.gef,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.gef_2.0.0.me201108091322/,4,false
org.jboss.tools.common.kb,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.kb_2.0.0.me201108091322/,4,false
org.jboss.tools.common.model,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.model_2.0.0.me201108091322/,4,false
org.jboss.tools.common.model.ui,2.0.0.me201110062148,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.model.ui_2.0.0.me201110062148/,4,false
org.jboss.tools.common.resref.core,1.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.resref.core_1.0.0.me201003052220.jar,4,false
org.jboss.tools.common.resref.ui,1.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.resref.ui_1.0.0.me201003052220.jar,4,false
org.jboss.tools.common.text.ext,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.text.ext_2.0.0.me201108091322/,4,false
org.jboss.tools.common.text.xml,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.common.text.xml_2.0.0.me201108091322/,4,false
org.jboss.tools.hibernate.xml,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.hibernate.xml_2.0.0.me201108091322/,4,false
org.jboss.tools.hibernate.xml.ui,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.hibernate.xml.ui_2.0.0.me201108091322/,4,false
org.jboss.tools.jsf,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf_2.0.0.me201108091322/,4,false
org.jboss.tools.jsf.text.ext,2.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.text.ext_2.0.0.me201110311918/,4,false
org.jboss.tools.jsf.text.ext.facelets,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.text.ext.facelets_2.0.0.me201108091322/,4,false
org.jboss.tools.jsf.ui,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.ui_2.0.0.me201108091322/,4,false
org.jboss.tools.jsf.vpe.ajax4jsf,2.1.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.vpe.ajax4jsf_2.1.0.me201003052220/,4,false
org.jboss.tools.jsf.vpe.facelets,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.vpe.facelets_2.1.0.me201108091322/,4,false
org.jboss.tools.jsf.vpe.jsf,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.vpe.jsf_2.1.0.me201108091322/,4,false
org.jboss.tools.jsf.vpe.jstl,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.vpe.jstl_2.1.0.me201108091322/,4,false
org.jboss.tools.jsf.vpe.myfaces,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.vpe.myfaces_2.1.0.me201108091322/,4,false
org.jboss.tools.jsf.vpe.richfaces,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jsf.vpe.richfaces_2.1.0.me201108091322/,4,false
org.jboss.tools.jst.jsp,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jst.jsp_2.0.0.me201108091322/,4,false
org.jboss.tools.jst.web,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jst.web_2.0.0.me201108091322/,4,false
org.jboss.tools.jst.web.ui,2.0.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.jst.web.ui_2.0.0.me201108091322/,4,false
org.jboss.tools.vpe,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.vpe_2.1.0.me201108091322/,4,false
org.jboss.tools.vpe.html,2.1.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.vpe.html_2.1.0.me201003052220/,4,false
org.jboss.tools.vpe.resref,2.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.vpe.resref_2.0.0.me201110311918.jar,4,false
org.jboss.tools.vpe.ui.palette,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.vpe.ui.palette_2.1.0.me201108091322/,4,false
org.jboss.tools.vpe.xulrunner,2.1.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jboss.tools.vpe.xulrunner_2.1.0.me201108091322.jar,4,false
org.jdom,1.0.0.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.jdom_1.0.0.v201005080400.jar,4,false
org.junit,3.8.2.v3_8_2_v20100427-1100,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/,4,false
org.junit,4.8.2.v4_8_2_v20110321-1705,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705/,4,false
org.junit4,4.8.1.v20100525,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.junit4_4.8.1.v20100525/,4,false
org.maven.ide.eclipse.wtp,0.13.1.me201110301321,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.maven.ide.eclipse.wtp_0.13.1.me201110301321.jar,4,false
org.maven.ide.eclipse.wtp.overlay,0.14.0.me201110062148,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.maven.ide.eclipse.wtp.overlay_0.14.0.me201110062148.jar,4,false
org.mortbay.jetty.server,6.1.23.v201012071420,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.mortbay.jetty.server_6.1.23.v201012071420.jar,4,false
org.mortbay.jetty.util,6.1.23.v201012071420,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.mortbay.jetty.util_6.1.23.v201012071420.jar,4,false
org.mozilla.javascript,1.7.2.v201005080400,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.mozilla.javascript_1.7.2.v201005080400.jar,4,false
org.mozilla.xpcom,1.9.0.7-me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.mozilla.xpcom_1.9.0.7-me201003052220.jar,4,false
org.mozilla.xulrunner.win32.win32.x86,1.9.0.7-me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.mozilla.xulrunner.win32.win32.x86_1.9.0.7-me201003052220/,4,false
org.objectweb.asm,3.3.1.v201105211655,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.objectweb.asm_3.3.1.v201105211655.jar,4,false
org.quartz,1.8.3.v20110329-1420,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.quartz_1.8.3.v20110329-1420.jar,4,false
org.sat4j.core,2.3.0.v20110329,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.sat4j.core_2.3.0.v20110329.jar,4,false
org.sat4j.pb,2.3.0.v20110329,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.sat4j.pb_2.3.0.v20110329.jar,4,false
org.slf4j.api,1.6.1.v20100831-0715,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.slf4j.api_1.6.1.v20100831-0715.jar,4,false
org.sonatype.m2e.mavenarchiver,0.14.0.201107260131,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.sonatype.m2e.mavenarchiver_0.14.0.201107260131.jar,4,false
org.springframework.aop,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.aop_3.0.5.RELEASE.jar,4,false
org.springframework.asm,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.asm_3.0.5.RELEASE.jar,4,false
org.springframework.batch.core,2.1.0.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.batch.core_2.1.0.RELEASE.jar,4,false
org.springframework.batch.infrastructure,2.1.0.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.batch.infrastructure_2.1.0.RELEASE.jar,4,false
org.springframework.beans,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.beans_3.0.5.RELEASE.jar,4,false
org.springframework.binding,2.0.7.A,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.binding_2.0.7.A.jar,4,false
org.springframework.context,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.context_3.0.5.RELEASE.jar,4,false
org.springframework.context.support,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.context.support_3.0.5.RELEASE.jar,4,false
org.springframework.core,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.core_3.0.5.RELEASE.jar,4,false
org.springframework.expression,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.expression_3.0.5.RELEASE.jar,4,false
org.springframework.faces,2.0.7.A,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.faces_2.0.7.A.jar,4,false
org.springframework.ide.eclipse,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.aop.core,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.aop.core_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.aop.ui,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.aop.ui_2.7.1.me201108091322.jar,4,false
org.springframework.ide.eclipse.aop.ui.matcher,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.aop.ui.matcher_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.batch,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.batch_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.beans.core,2.7.1.me201110252317,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.core_2.7.1.me201110252317.jar,4,false
org.springframework.ide.eclipse.beans.core.autowire,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.core.autowire_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.beans.core.metadata,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.core.metadata_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.beans.ui,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.ui_2.7.1.me201108091322.jar,4,false
org.springframework.ide.eclipse.beans.ui.autowire,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.ui.autowire_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.beans.ui.editor,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.ui.editor_2.7.1.me201108091322.jar,4,false
org.springframework.ide.eclipse.beans.ui.graph,2.7.1.me201108021509,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.ui.graph_2.7.1.me201108021509.jar,4,false
org.springframework.ide.eclipse.beans.ui.refactoring,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.ui.refactoring_2.7.1.me201108091322.jar,4,false
org.springframework.ide.eclipse.beans.ui.search,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.beans.ui.search_2.7.1.me201108091322.jar,4,false
org.springframework.ide.eclipse.core,2.7.1.me201109141806,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.core_2.7.1.me201109141806.jar,4,false
org.springframework.ide.eclipse.integration,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.integration_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.osgi,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.osgi_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.osgi.targetdefinition,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.osgi.targetdefinition_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.security,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.security_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.ui,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.ui_2.7.1.me201108091322.jar,4,false
org.springframework.ide.eclipse.webflow.core,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.webflow.core_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.webflow.ui,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.webflow.ui_2.7.1.me201108091322.jar,4,false
org.springframework.ide.eclipse.webflow.ui.editor,2.7.1.201107082359-RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.webflow.ui.editor_2.7.1.201107082359-RELEASE.jar,4,false
org.springframework.ide.eclipse.webflow.ui.graph,2.7.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ide.eclipse.webflow.ui.graph_2.7.1.me201108091322.jar,4,false
org.springframework.jdbc,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.jdbc_3.0.5.RELEASE.jar,4,false
org.springframework.jms,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.jms_3.0.5.RELEASE.jar,4,false
org.springframework.js,2.0.7.A,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.js_2.0.7.A.jar,4,false
org.springframework.orm,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.orm_3.0.5.RELEASE.jar,4,false
org.springframework.osgi.core,2.0.0.M2-SNAPSHOT,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.osgi.core_2.0.0.M2-SNAPSHOT.jar,4,false
org.springframework.osgi.io,2.0.0.M2-SNAPSHOT,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.osgi.io_2.0.0.M2-SNAPSHOT.jar,4,false
org.springframework.oxm,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.oxm_3.0.5.RELEASE.jar,4,false
org.springframework.security.config,3.0.2.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.security.config_3.0.2.RELEASE.jar,4,false
org.springframework.security.core,3.0.2.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.security.core_3.0.2.RELEASE.jar,4,false
org.springframework.security.web,3.0.2.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.security.web_3.0.2.RELEASE.jar,4,false
org.springframework.transaction,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.transaction_3.0.5.RELEASE.jar,4,false
org.springframework.web,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.web_3.0.5.RELEASE.jar,4,false
org.springframework.web.servlet,3.0.5.RELEASE,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.web.servlet_3.0.5.RELEASE.jar,4,false
org.springframework.webflow,2.0.7.A1,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.webflow_2.0.7.A1.jar,4,false
org.springframework.ws,1.5.8.A,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.ws_1.5.8.A.jar,4,false
org.springframework.xml,1.5.8.A,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.springframework.xml_1.5.8.A.jar,4,false
org.topcased.core,2.3.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.core_2.3.0.me201003052220.jar,4,false
org.topcased.draw2d,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.draw2d_2.3.0.me201108091322.jar,4,false
org.topcased.facilities,2.3.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.facilities_2.3.0.me201003052220.jar,4,false
org.topcased.java.reverse,2.3.0.me201005202256,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.java.reverse_2.3.0.me201005202256.jar,4,false
org.topcased.model.management,2.3.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.model.management_2.3.0.me201003052220.jar,4,false
org.topcased.modeler,2.3.0.me201108301958,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler_2.3.0.me201108301958.jar,4,false
org.topcased.modeler.di,2.2.1.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.di_2.2.1.me201108091322.jar,4,false
org.topcased.modeler.diagrams,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.diagrams_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.export,2.3.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.export_2.3.0.me201003052220.jar,4,false
org.topcased.modeler.graphconf,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.graphconf_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.uml,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.uml.activitydiagram,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml.activitydiagram_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.uml.componentdiagram,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml.componentdiagram_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.uml.compositestructuresdiagram,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml.compositestructuresdiagram_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.uml.deploymentdiagram,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml.deploymentdiagram_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.uml.importer,2.1.0.me201105051700,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml.importer_2.1.0.me201105051700.jar,4,false
org.topcased.modeler.uml.sequencediagram,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml.sequencediagram_2.3.0.me201108091322.jar,4,false
org.topcased.modeler.uml.statemachinediagram,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.modeler.uml.statemachinediagram_2.3.0.me201108091322.jar,4,false
org.topcased.search.core,2.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.search.core_2.0.0.me201003052220.jar,4,false
org.topcased.search.ecore,2.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.search.ecore_2.0.0.me201003052220.jar,4,false
org.topcased.search.ecore.ui,2.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.search.ecore.ui_2.0.0.me201003052220.jar,4,false
org.topcased.search.ui,2.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.search.ui_2.0.0.me201003052220.jar,4,false
org.topcased.search.uml2,2.0.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.search.uml2_2.0.0.me201012090051.jar,4,false
org.topcased.search.uml2.ui,2.0.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.search.uml2.ui_2.0.0.me201003052220.jar,4,false
org.topcased.tabbedproperties,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.tabbedproperties_2.3.0.me201108091322.jar,4,false
org.topcased.ui,2.3.0.me201109191820,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.ui_2.3.0.me201109191820.jar,4,false
org.topcased.uml2java.generator,2.3.0.me201108091322,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.uml2java.generator_2.3.0.me201108091322.jar,4,false
org.topcased.uml2java.launcher,2.3.0.me201012090051,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.uml2java.launcher_2.3.0.me201012090051.jar,4,false
org.topcased.validation.core,2.3.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.validation.core_2.3.0.me201003052220.jar,4,false
org.topcased.validation.ui,2.3.0.me201003052220,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.topcased.validation.ui_2.3.0.me201003052220.jar,4,false
org.uddi4j,2.0.5.v200805270300,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.uddi4j_2.0.5.v200805270300.jar,4,false
org.w3c.css.sac,1.3.1.v200903091627,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar,4,false
org.w3c.dom.events,3.0.0.draft20060413_v201105210656,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.w3c.dom.events_3.0.0.draft20060413_v201105210656.jar,4,false
org.w3c.dom.smil,1.0.1.v200903091627,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.w3c.dom.smil_1.0.1.v200903091627.jar,4,false
org.w3c.dom.svg,1.1.0.v201011041433,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar,4,false
org.w3c.sac,1.3.0.v20101011,file:/D:/Program%20Files/MyEclipse/Common/plugins/org.w3c.sac_1.3.0.v20101011/,4,false
pulse.onemeta.com.genuitec.myeclipse.enterprise.workbench.onemeta.win32,10.0.0.me201110311918,file:/D:/Program%20Files/MyEclipse/Common/plugins/pulse.onemeta.com.genuitec.myeclipse.enterprise.workbench.onemeta.win32_10.0.0.me201110311918.jar,4,false

com.collabnet.subversion.merge.feature,2.1.0,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/com.collabnet.subversion.merge.feature_2.1.0.jar,4,false
com.sun.jna,3.2.3,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/com.sun.jna_3.2.3.jar,4,false
org.tigris.subversion.clientadapter.feature,1.6.12,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/org.tigris.subversion.clientadapter.feature_1.6.12.jar,4,false
org.tigris.subversion.clientadapter.javahl.feature,1.6.12,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/org.tigris.subversion.clientadapter.javahl.feature_1.6.12.jar,4,false
org.tigris.subversion.clientadapter.svnkit.feature,1.6.12,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/org.tigris.subversion.clientadapter.svnkit.feature_1.6.12.jar,4,false
org.tigris.subversion.subclipse.graph.feature,1.0.8,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/org.tigris.subversion.subclipse.graph.feature_1.0.8.jar,4,false
org.tigris.subversion.subclipse.mylyn,3.0.0,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/org.tigris.subversion.subclipse.mylyn_3.0.0.jar,4,false
org.tigris.subversion.subclipse,1.6.13,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/org.tigris.subversion.subclipse_1.6.13.jar,4,false
org.tmatesoft.svnkit,1.3.3.6648,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/features/org.tmatesoft.svnkit_1.3.3.6648.jar,4,false
com.collabnet.subversion.merge,2.1.0,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/com.collabnet.subversion.merge_2.1.0.jar,4,false
com.sun.jna,3.2.3,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/com.sun.jna_3.2.3.jar,4,false
org.tigris.subversion.clientadapter.javahl.win32,1.6.12,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.clientadapter.javahl.win32_1.6.12.jar,4,false
org.tigris.subversion.clientadapter.javahl,1.6.12,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.clientadapter.javahl_1.6.12.jar,4,false
org.tigris.subversion.clientadapter.svnkit,1.6.12,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.clientadapter.svnkit_1.6.12.jar,4,false
org.tigris.subversion.clientadapter,1.6.12,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.clientadapter_1.6.12.jar,4,false
org.tigris.subversion.subclipse.core,1.6.13,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.subclipse.core_1.6.13.jar,4,false
org.tigris.subversion.subclipse.doc,1.3.0,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.subclipse.doc_1.3.0.jar,4,false
org.tigris.subversion.subclipse.graph,1.0.8,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.subclipse.graph_1.0.8.jar,4,false
org.tigris.subversion.subclipse.mylyn,3.0.0,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.subclipse.mylyn_3.0.0.jar,4,false
org.tigris.subversion.subclipse.ui,1.6.13,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tigris.subversion.subclipse.ui_1.6.13.jar,4,false
org.tmatesoft.svnkit,1.3.3.6648,file:/D:/Program Files/MyEclipse/MyPlugins/svn/1.6/plugins/org.tmatesoft.svnkit_1.3.3.6648.jar,4,false

org.eclipse.wb.core.feature,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.core.feature_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.core.ui.feature,1.1.0.r37x201109091028,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.core.ui.feature_1.1.0.r37x201109091028.jar,4,false
org.eclipse.wb.core.xml.feature,1.1.0.r37x201109091031,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.core.xml.feature_1.1.0.r37x201109091031.jar,4,false
org.eclipse.wb.doc.user.feature,1.1.0.r37x201109091024,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.doc.user.feature_1.1.0.r37x201109091024.jar,4,false
org.eclipse.wb.layout.group.feature,1.1.0.r37x201109091112,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.layout.group.feature_1.1.0.r37x201109091112.jar,4,false
org.eclipse.wb.rcp.doc.user.feature,1.1.0.r37x201109091057,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.rcp.doc.user.feature_1.1.0.r37x201109091057.jar,4,false
org.eclipse.wb.rcp.feature,1.1.0.r37x201109091152,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.rcp.feature_1.1.0.r37x201109091152.jar,4,false
org.eclipse.wb.rcp.SWT_AWT_support,1.1.0.r37x201109091215,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.rcp.SWT_AWT_support_1.1.0.r37x201109091215.jar,4,false
org.eclipse.wb.swing.doc.user.feature,1.1.0.r37x201109091102,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.swing.doc.user.feature_1.1.0.r37x201109091102.jar,4,false
org.eclipse.wb.swing.feature,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.swing.feature_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swt.feature,1.1.0.r37x201109091134,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.swt.feature_1.1.0.r37x201109091134.jar,4,false
org.eclipse.wb.xwt.feature,1.1.0.r37x201109091200,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/features/org.eclipse.wb.xwt.feature_1.1.0.r37x201109091200.jar,4,false
logo,top,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/images/logo_top.jpg,4,false
logo,top.old,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/images/logo_top.old.jpg,4,false
org.eclipse.wb.core.databinding.xml,1.1.0.r37x201109091031,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.core.databinding.xml_1.1.0.r37x201109091031.jar,4,false
org.eclipse.wb.core.databinding,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.core.databinding_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.core.lib,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.core.lib_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.core.ui,1.1.0.r37x201109091028,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.core.ui_1.1.0.r37x201109091028.jar,4,false
org.eclipse.wb.core.xml,1.1.0.r37x201109091031,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.core.xml_1.1.0.r37x201109091031.jar,4,false
org.eclipse.wb.core,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.core_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.discovery.core,1.1.0.r37x201109091028,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.discovery.core_1.1.0.r37x201109091028.jar,4,false
org.eclipse.wb.discovery.ui,1.1.0.r37x201109091028,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.discovery.ui_1.1.0.r37x201109091028.jar,4,false
org.eclipse.wb.doc.user,1.1.0.r37x201109091024,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.doc.user_1.1.0.r37x201109091024.jar,4,false
org.eclipse.wb.jdt.fragment,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.jdt.fragment_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.layout.group,1.1.0.r37x201109091112,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.layout.group_1.1.0.r37x201109091112.jar,4,false
org.eclipse.wb.os.linux,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.os.linux_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.os.macosx,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.os.macosx_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.os.win32,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.os.win32_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.os,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.os_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.rcp.databinding.emf,1.1.0.r37x201109091152,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp.databinding.emf_1.1.0.r37x201109091152.jar,4,false
org.eclipse.wb.rcp.databinding.xwt,1.1.0.r37x201109091200,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp.databinding.xwt_1.1.0.r37x201109091200.jar,4,false
org.eclipse.wb.rcp.databinding,1.1.0.r37x201109091152,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp.databinding_1.1.0.r37x201109091152.jar,4,false
org.eclipse.wb.rcp.doc.user,1.1.0.r37x201109091057,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp.doc.user_1.1.0.r37x201109091057.jar,4,false
org.eclipse.wb.rcp.nebula,1.1.0.r37x201109091152,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp.nebula_1.1.0.r37x201109091152.jar,4,false
org.eclipse.wb.rcp.swing2swt,1.1.0.r37x201109091152,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp.swing2swt_1.1.0.r37x201109091152.jar,4,false
org.eclipse.wb.rcp.SWT_AWT,1.1.0.r37x201109091215,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp.SWT_AWT_1.1.0.r37x201109091215.jar,4,false
org.eclipse.wb.rcp,1.1.0.r37x201109091152,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.rcp_1.1.0.r37x201109091152.jar,4,false
org.eclipse.wb.runtime.lib,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.runtime.lib_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.runtime,1.1.0.r37x201109091012,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.runtime_1.1.0.r37x201109091012.jar,4,false
org.eclipse.wb.swing.databinding,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.databinding_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swing.doc.user,1.1.0.r37x201109091102,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.doc.user_1.1.0.r37x201109091102.jar,4,false
org.eclipse.wb.swing.FormLayout.lib,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.FormLayout.lib_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swing.FormLayout,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.FormLayout_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swing.java6,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.java6_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swing.jsr296,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.jsr296_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swing.MigLayout.lib,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.MigLayout.lib_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swing.MigLayout,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing.MigLayout_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swing,1.1.0.r37x201109091143,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swing_1.1.0.r37x201109091143.jar,4,false
org.eclipse.wb.swt.widgets.baseline,1.1.0.r37x201109091152,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swt.widgets.baseline_1.1.0.r37x201109091152.jar,4,false
org.eclipse.wb.swt,1.1.0.r37x201109091134,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.swt_1.1.0.r37x201109091134.jar,4,false
org.eclipse.wb.xwt,1.1.0.r37x201109091200,file:/D:/Program Files/MyEclipse/MyPlugins/WindowsBuilder/eclipse3.7/plugins/org.eclipse.wb.xwt_1.1.0.r37x201109091200.jar,4,false

net.sf.fjep.fatjar,0.0.31,file:/D:/Program Files/MyEclipse/MyPlugins/fatjar/plugins/net.sf.fjep.fatjar_0.0.31.jar,4,false

com.adobe.spry.1.6,1.6.0.00003,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.adobe.spry.1.6_1.6.0.00003.jar,4,false
com.aptana.ide.feature.editor.css,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.editor.css_1.2.7.024747.jar,4,false
com.aptana.ide.feature.editor.html,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.editor.html_1.2.7.024747.jar,4,false
com.aptana.ide.feature.editor.js,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.editor.js_1.2.7.024747.jar,4,false
com.aptana.ide.feature.editors,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.editors_1.2.7.024747.jar,4,false
com.aptana.ide.feature.framework.jaxer,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.framework.jaxer_1.2.7.024747.jar,4,false
com.aptana.ide.feature.frameworks,1.1.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.frameworks_1.1.7.024747.jar,4,false
com.aptana.ide.feature.professional_1.2.7.024688,200905101214,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.professional_1.2.7.024688_200905101214.jar,4,false
com.aptana.ide.feature.rcp,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.rcp_1.2.7.024747.jar,4,false
com.aptana.ide.feature.server.cloud,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.server.cloud_1.2.7.024747.jar,4,false
com.aptana.ide.feature.svn,1.4.2,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.svn_1.4.2.jar,4,false
com.aptana.ide.feature.syncing.ftp,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.syncing.ftp_1.2.7.024747.jar,4,false
com.aptana.ide.feature.xul,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature.xul_1.2.7.024747.jar,4,false
com.aptana.ide.feature,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.aptana.ide.feature_1.2.7.024747.jar,4,false
com.extjs.ext.2.2,2.2.0.0004,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.extjs.ext.2.2_2.2.0.0004.jar,4,false
com.jquery.1.3,1.3.2.00002,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.jquery.1.3_1.3.2.00002.jar,4,false
com.mochikit.1.4,1.4.0.00006,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.mochikit.1.4_1.4.0.00006.jar,4,false
com.ms.ajax.3.5,3.5.21022.9,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.ms.ajax.3.5_3.5.21022.9.jar,4,false
com.yahoo.yui.2.7,2.7.0.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/com.yahoo.yui.2.7_2.7.0.00001.jar,4,false
net.mootools.1.2,1.2.1.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/net.mootools.1.2_1.2.1.00001.jar,4,false
org.aflax.1.0,1.0.0.00004,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/org.aflax.1.0_1.0.0.00004.jar,4,false
org.dojotoolkit.dojo.1.2,1.2.0.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/org.dojotoolkit.dojo.1.2_1.2.0.00001.jar,4,false
org.eclipse.eclipsemonkey,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/org.eclipse.eclipsemonkey_1.2.7.024747.jar,4,false
org.openrico.rico.2.0,2.0.0.00002,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/org.openrico.rico.2.0_2.0.0.00002.jar,4,false
org.prototypejs.prototype.1.6,1.6.0.00003,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/org.prototypejs.prototype.1.6_1.6.0.00003.jar,4,false
org.scriptaculous.1.8,1.8.1.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/features/org.scriptaculous.1.8_1.8.1.00001.jar,4,false
fix,polic,file:/D:/Program Files/MyEclipse/MyPlugins/apata/fix_policy.sh,4,false
fix,policy,file:/D:/Program Files/MyEclipse/MyPlugins/apata/fix_policy.vbs,4,false
com.adobe.spry.1.6,1.6.0.00003,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.adobe.spry.1.6_1.6.0.00003.jar,4,false
com.aptana.ide.branding,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.branding_1.2.7.024747.jar,4,false
com.aptana.ide.core.ui,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.core.ui_1.2.7.024747.jar,4,false
com.aptana.ide.core.win32,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.core.win32_1.2.7.024747.jar,4,false
com.aptana.ide.core,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.core_1.2.7.024747.jar,4,false
com.aptana.ide.db.ui,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.db.ui_1.2.7.024747.jar,4,false
com.aptana.ide.debug.core.ie_1.1.12.024688,200905101214,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.debug.core.ie_1.1.12.024688_200905101214.jar,4,false
com.aptana.ide.debug.core,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.debug.core_1.2.7.024747.jar,4,false
com.aptana.ide.debug.ui,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.debug.ui_1.2.7.024747.jar,4,false
com.aptana.ide.documentation,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.documentation_1.2.7.024747.jar,4,false
com.aptana.ide.editor.css,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.editor.css_1.2.7.024747.jar,4,false
com.aptana.ide.editor.html,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.editor.html_1.2.7.024747.jar,4,false
com.aptana.ide.editor.js,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.editor.js_1.2.7.024747.jar,4,false
com.aptana.ide.editor.text,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.editor.text_1.2.7.024747.jar,4,false
com.aptana.ide.editor.xml,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.editor.xml_1.2.7.024747.jar,4,false
com.aptana.ide.editors.codeassist,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.editors.codeassist_1.2.7.024747.jar,4,false
com.aptana.ide.editors,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.editors_1.2.7.024747.jar,4,false
com.aptana.ide.epl,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.epl_1.2.7.024747.jar,4,false
com.aptana.ide.extras,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.extras_1.2.7.024747.jar,4,false
com.aptana.ide.framework.jaxer.server.linux,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.framework.jaxer.server.linux_1.2.7.024747.jar,4,false
com.aptana.ide.framework.jaxer.server.macosx,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.framework.jaxer.server.macosx_1.2.7.024747.jar,4,false
com.aptana.ide.framework.jaxer.server.win32,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.framework.jaxer.server.win32_1.2.7.024747.jar,4,false
com.aptana.ide.framework.jaxer,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.framework.jaxer_1.2.7.024747.jar,4,false
com.aptana.ide.internet.proxy,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.internet.proxy_1.2.7.024747.jar,4,false
com.aptana.ide.interpreters,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.interpreters_1.2.7.024747.jar,4,false
com.aptana.ide.intro,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.intro_1.2.7.024747.jar,4,false
com.aptana.ide.io.file,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.io.file_1.2.7.024747.jar,4,false
com.aptana.ide.jface.text.source,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.jface.text.source_1.2.7.024747.jar,4,false
com.aptana.ide.js.docgen,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.js.docgen_1.2.7.024747.jar,4,false
com.aptana.ide.lexer,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.lexer_1.2.7.024747.jar,4,false
com.aptana.ide.libraries.jetty,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.libraries.jetty_1.2.7.024747.jar,4,false
com.aptana.ide.libraries,1.2.3.18699,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.libraries_1.2.3.18699.jar,4,false
com.aptana.ide.logging,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.logging_1.2.7.024747.jar,4,false
com.aptana.ide.parsing,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.parsing_1.2.7.024747.jar,4,false
com.aptana.ide.pathtools,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.pathtools_1.2.7.024747.jar,4,false
com.aptana.ide.professional.licensing_1.2.7.024688,200905101214,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.professional.licensing_1.2.7.024688_200905101214.jar,4,false
com.aptana.ide.rcp.main,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.rcp.main_1.2.7.024747.jar,4,false
com.aptana.ide.rcp,1.2.6.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.rcp_1.2.6.024747.jar,4,false
com.aptana.ide.samples,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.samples_1.2.7.024747.jar,4,false
com.aptana.ide.scripting,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.scripting_1.2.7.024747.jar,4,false
com.aptana.ide.search.epl,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.search.epl_1.2.7.024747.jar,4,false
com.aptana.ide.search,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.search_1.2.7.024747.jar,4,false
com.aptana.ide.server.cloud,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.server.cloud_1.2.7.024747.jar,4,false
com.aptana.ide.server.core,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.server.core_1.2.7.024747.jar,4,false
com.aptana.ide.server.javacloud,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.server.javacloud_1.2.7.024747.jar,4,false
com.aptana.ide.server.jetty,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.server.jetty_1.2.7.024747.jar,4,false
com.aptana.ide.server.portal,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.server.portal_1.2.7.024747.jar,4,false
com.aptana.ide.server.ui,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.server.ui_1.2.7.024747.jar,4,false
com.aptana.ide.server,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.server_1.2.7.024747.jar,4,false
com.aptana.ide.snippets,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.snippets_1.2.7.024747.jar,4,false
com.aptana.ide.ssh,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.ssh_1.2.7.024747.jar,4,false
com.aptana.ide.svn,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.svn_1.2.7.024747.jar,4,false
com.aptana.ide.syncing.professional_1.2.7.024688,200905101214,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.syncing.professional_1.2.7.024688_200905101214.jar,4,false
com.aptana.ide.syncing,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.syncing_1.2.7.024747.jar,4,false
com.aptana.ide.update,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.update_1.2.7.024747.jar,4,false
com.aptana.ide.xul,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.aptana.ide.xul_1.2.7.024747.jar,4,false
com.extjs.ext.2.2,2.2.0.0004,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.extjs.ext.2.2_2.2.0.0004.jar,4,false
com.jquery.1.3,1.3.2.00002,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.jquery.1.3_1.3.2.00002.jar,4,false
com.mochikit.1.4,1.4.0.00006,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.mochikit.1.4_1.4.0.00006.jar,4,false
com.ms.ajax.3.5,3.5.21022.9,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.ms.ajax.3.5_3.5.21022.9.jar,4,false
com.mysql.driver,0.5.12,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.mysql.driver_0.5.12.jar,4,false
com.yahoo.yui.2.7,2.7.0.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/com.yahoo.yui.2.7_2.7.0.00001.jar,4,false
net.mootools.1.2,1.2.1.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/net.mootools.1.2_1.2.1.00001.jar,4,false
org.aflax.1.0,1.0.0.00003,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.aflax.1.0_1.0.0.00003.jar,4,false
org.dojotoolkit.dojo.1.2,1.2.0.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.dojotoolkit.dojo.1.2_1.2.0.00001.jar,4,false
org.eclipse.atf.mozilla.ide.core,0.2.1.v200703161053,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.atf.mozilla.ide.core_0.2.1.v200703161053.jar,4,false
org.eclipse.atf.mozilla.swt.browser.carbon.macosx,0.2.1.v200703161053,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.atf.mozilla.swt.browser.carbon.macosx_0.2.1.v200703161053.jar,4,false
org.eclipse.atf.mozilla.swt.browser.win32.win32.x86,0.2.1.v200703161053,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.atf.mozilla.swt.browser.win32.win32.x86_0.2.1.v200703161053.jar,4,false
org.eclipse.atf.mozilla.swt.browser,0.2.1.v200703161053,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.atf.mozilla.swt.browser_0.2.1.v200703161053.jar,4,false
org.eclipse.eclipsemonkey.doms,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.eclipsemonkey.doms_1.2.7.024747.jar,4,false
org.eclipse.eclipsemonkey.lang.javascript,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.eclipsemonkey.lang.javascript_1.2.7.024747.jar,4,false
org.eclipse.eclipsemonkey.ui,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.eclipsemonkey.ui_1.2.7.024747.jar,4,false
org.eclipse.eclipsemonkey,1.2.7.024747,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.eclipse.eclipsemonkey_1.2.7.024747.jar,4,false
org.mozilla.rhino,1.6.7,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.mozilla.rhino_1.6.7.jar,4,false
org.mozilla.xpcom,1.8.1.3-20070320,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.mozilla.xpcom_1.8.1.3-20070320.jar,4,false
org.mozilla.xulrunner.carbon.macosx,1.8.1.3-20070404,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.mozilla.xulrunner.carbon.macosx_1.8.1.3-20070404.jar,4,false
org.mozilla.xulrunner.win32.win32.x86,1.8.1.3-20070404,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.mozilla.xulrunner.win32.win32.x86_1.8.1.3-20070404.jar,4,false
org.openrico.rico.2.0,2.0.0.00002,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.openrico.rico.2.0_2.0.0.00002.jar,4,false
org.prototypejs.prototype.1.6,1.6.0.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.prototypejs.prototype.1.6_1.6.0.00001.jar,4,false
org.scriptaculous.1.8,1.8.0.00001,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.scriptaculous.1.8_1.8.0.00001.jar,4,false
org.sqlite.driver,0.4.5,file:/D:/Program Files/MyEclipse/MyPlugins/apata/plugins/org.sqlite.driver_0.4.5.jar,4,false
site,rcp,file:/D:/Program Files/MyEclipse/MyPlugins/apata/site_rcp.xml,4,false
分享到:
评论

相关推荐

    myeclipse的优化

    一、myeclipse优化方案一(专治myeclipse的jsp页面卡的问题): 解决Myeclipse 编辑jsp页面卡 编辑一个jsp页面时,如果每输入一下,CPU都100%一下,问题的解决2008年10月29日 星期三 13:14今天解决了一个让我特郁闷的...

    Myeclipse 2018

    myeclipse 2018破解版是一款java开发的必备利器,MyEclipse让您的开发保持流畅。...通过标准的Maven项目架构和MyEClipse菜单内置的启动命令,你可以在当前IDE下使用Maven管理项目。 使用构架等提升你的Java Spring项目

    《MyEclipse 6 Java 开发中文教程》前10章

    第四章 用MyEclipse Database Explorer管理数据库 67 4.1功能一览 67 4.2使用MyEclipse Database Explorer透视图 69 4.2.1介绍 69 4.2.2连接到MyEcipse Derby数据库 70 4.2.3切换到MyEclipse Database Explorer透视...

    基于javaweb的小型超市信息管理(进销存)系统。开发工具为MyEclipse.zip

    包括编译器、构建工具(如Make、Gradle、Maven)等,用于将源代码转换为可执行文件或库,并进行资源打包、优化等处理。 调试与测试: 集成调试器允许开发者逐行执行代码,设置断点、查看变量值、跟踪调用堆栈等...

    JSP基于SSM实训项目管理任务作业批改系统可升级SpringBoot源码.7z

    在myEclipse、Eclipse或Idea等开发环境下,结合mysql数据库,我们利用Bootstrap前台技术框架和SSM后台架构框架,设计并实现了一个实训日志管理系统。 随着教育IT公司学员数量的不断增长,管理学员实训项目日志的...

    毕业设计,基于SSM+MySql+Bootstrap开发的实训项目管理任务作业批改系统,内含Java完整源代码,数据库脚本等

    1.研究情况:现今在我国随着教育IT公司学员数量的日益增加,企业管理学员的实训项目日志的难度与日俱增,企业管理平台的功能存在不足,开发和优化日志管理系统已成为公司管理的主流趋势。 2.目的意义:实训日志管理...

    JSP基于SSM实训项目管理任务作业批改系统可升级SpringBoot

    研究情况:现今在我国随着教育IT公司学员数量的日益增加,企业管理学员的实训项目日志的难度与日俱增,企业管理平台的功能存在不足,开发和优化日志管理系统已成为公司管理的主流趋势。 2.目的意义:实训日志管理...

    最新SpringBoot项目逍遥大药房管理系统.zip

    **逍遥大药房管理系统是一个基于SpringBoot的项目资源,旨在优化药品管理流程和提高效率**。具体介绍内容如下: 1. **开发语言与技术**: - 使用Java作为主要的开发语言。 - 采用SpringBoot框架进行快速开发和部署...

    JSP基于SSM实训项目管理任务作业批改系统可升级SpringBoot设计

    研究情况:现今在我国随着教育IT公司学员数量的日益增加,企业管理学员的实训项目日志的难度与日俱增,企业管理平台的功能存在不足,开发和优化日志管理系统已成为公司管理的主流趋势。 2.目的意义:实训日志管理...

    java-j2ee项目实例

    窗口 网上营业监管优化 通话实时监控 通话模拟 通话业务开发优化管理 客户/顾客/电话号/信息管理 欠费处理(短信催费)机制优化管理 说明: 此项目为J2EE BS/CS项目 需要 :tomcat6.0f服务器 数据库 struts1/struts...

    JSP基于SSM速之达快递物资物流管理系统可升级SpringBoot源码.7z

    开发环境灵活多样,myEclipse、Eclipse、Idea均可使用,结合mysql数据库,实现数据的存储与管理。后台则基于SSM(SpringMVC + Spring + Mybatis)框架,确保系统稳定高效运行。 前台界面功能丰富,包括用户和工作...

    客户信息管理系统CRM源代码及文档

    这是我们的java实训项目,使用的myeclipse和tomca开发,采用的mysql数据库服务器.采用框架进行的开发.压缩包里有源代码,数据库,项目报告,答辩PPT.应有尽有,最终要的是有使用说明书.

    Java项目:宠物领养寄养商城系统(java+Springboot+HTML+bootstrap+mysql)

    4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 5.数据库:MySql 5.7版本; 6.是否Maven项目:是; 技术栈 1. 后端:SpringBoot+Mybatis 2. 前端:HTML+CSS+Bootstrap+jQuery 使用说明 1. 使用Navicat...

    java毕业设计之职称评审管理系统(springboot源码+LW+PPT+视频讲解).zip

    职称评审管理系统主要是为了提高工作人员的工作效率和更方便快捷的满足用户,更好存储所有数据信息及快速方便的检索功能,对系统的各个模块是通过许多今天的发达系统做出合理的分析来确定考虑用户的可操作性,遵循...

    javaweb课程设计景点门票销售系统

    避免现实生活,因为寻找相关信息的费力,优化服务。 管理员模块需求: 查看门票、管理门票、管理商家跟普通客户等(对以上信息进行修改删除); 商家模块需求: 修改管理自己的信息、发布门票、查看自己门票所售...

    计算机课程设计+SQL Server 2000/JAVA+网上商城系统

    管理员管理:能够完成管理员对网站的商品资料(添加大类、添加小类、商品添加、商品审查)、商品交易(外理订单、发货查询)、会员管理(会员审查)、操作管理(管理员添加、管理员审查、管理员退出)的功能。...

    基于SSM的实训项目管理任务作业批改系统源码+sql数据库(高分毕设).zip

    研究情况:现今在我国随着教育IT公司学员数量的日益增加,企业管理学员的实训项目日志的难度与日俱增,企业管理平台的功能存在不足,开发和优化日志管理系统已成为公司管理的主流趋势。 2.目的意义:实训日志管理...

    基于web的工资管理系统课程设计.doc

    2.1.2 技术上的可行性 依靠当今的软件开发方法和案例,通过学习了MyEclipse软件的学习,及对Oracle数 据库的学习和网络知识的学习,及现今计算机硬件的水平的提高,通过努力开发出来应 该是没有技术问题。...

Global site tag (gtag.js) - Google Analytics