Author: dgolovin
Date: 2010-08-12 19:11:08 -0400 (Thu, 12 Aug 2010)
New Revision: 24127
Modified:
trunk/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF
trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
Log:
https://jira.jboss.org/browse/JBIDE-6430 Eclipse has a problem to reference
org.jboss.tools.common.model.ui 3.1.1
problem is in combination of factors:
1. JBDS contains two sets of plugins in different folders. eclipse contains eclipse
distribution, studio - studio plugins. Studio folder linked to eclipse through file in
eclipse/links folder.
2. mode.ui is unpacked after installation and that makes model.ui/. folder part of
classpath
this combination is not supported by PDE and it cannot find plugin classes
I added jars in common.model and common.model.ui that contains compiled classes/resources
and registered them in plugin's classpath in manifests
Modified: trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-08-12
21:01:42 UTC (rev 24126)
+++ trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-08-12
23:11:08 UTC (rev 24127)
@@ -85,3 +85,4 @@
org.eclipse.core.runtime;visibility:=reexport
Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-ClassPath: org.jboss.tools.common.model.jar
Modified: trunk/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF 2010-08-12
21:01:42 UTC (rev 24126)
+++ trunk/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF 2010-08-12
23:11:08 UTC (rev 24127)
@@ -93,3 +93,4 @@
org.jboss.tools.common.ui
Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-ClassPath: org.jboss.tools.common.model.ui.jar