Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-ui-dev] Fw: Updated plugin.xmls

In order to self-host with these changes, please load the following 
projects from HEAD (in addition to the platform-ui modules):

org.eclipse.core.applicationrunner
org.eclipse.core.boot
org.eclipse.core.runtime
org.eclipse.core.runtime.compatibility
org.eclipse.osgi
org.eclipse.osgi.services
org.eclipse.osgi.util
org.eclipse.update.configurator

Note that org.eclipse.core.runtime.osgi should -not- be loaded.

Until the Text plugins are updated, you will also need to make changes to 
the following projects:
org.eclipse.jface.text
org.eclipse.ui.editors
org.eclipse.ui.workbench.texteditor

Add the following to the requires clause in their plugin.xml:
      <import plugin="org.eclipse.core.runtime.compatibility"/>
then add org.eclipse.core.runtime.compatibility to the classpath (Project 
> Properties > Java Build Path > Projects)

To ensure all the right plugins are being found, you can also:
- ensure there are no conflicts between your workspace and the PDE target 
platform (usually your install) by going to Preferences > Plug-in 
Development > Target Platform and clicking on Not in Workspace
- recreate your Run-time Workbench launch config

Nick


----- Forwarded by Nick Edgar/Ottawa/IBM on 11/28/2003 02:20 PM -----

Nick Edgar/Ottawa/IBM 
11/28/2003 12:04 PM

To
platform-ui-dev@xxxxxxxxxxx
cc

Subject
Updated plugin.xmls





Further to Jeff's message below, I've updated the Platform UI plugins to 
include org.eclipse.core.runtime.compatibility.
I've also removed refs to org.eclipse.core.boot.

The only direct references we had to org.eclipse.core.boot were to 
IPlatformRunnable, IPlatformConfiguration or BootLoader (to get the 
IPlatformConfiguration).
These have moved to org.eclipse.core.runtime.compatibility.

Nick

----- Forwarded by Nick Edgar/Ottawa/IBM on 11/28/2003 11:14 AM -----

Jeff McAffer/Ottawa/IBM@IBMCA 
Sent by: eclipse-dev-admin@xxxxxxxxxxx
11/27/2003 05:42 PM
Please respond to
eclipse-dev


To
eclipse-dev@xxxxxxxxxxx
cc

Subject
[eclipse-dev] ACTION REQUIRED: update plugin.xmls







In the new runtime the org.eclipse.core.runtime plugin is no longer 
provided for free.  Accordingly you need to change the plugin.xml (and 
fragment.xml) as described below.  Without these changes, PDE will not be 
able to figure out the correct classpaths. 

1) look at the top of your plugin.xml for 
         <?eclipse version="3.0"> 
2) if you see it, add the following import in your <requires> element 
        <import plugin="org.eclipse.core.runtime.compatibility"/> 
    else 
        do nothing 

SWT folks:  No action is required by you. 

These changes should be put in place by next week's integration build. 
Please let me know directly if you have questions or will have difficulty 
doing these changes. 

Jeff 


Back to the top