Initial commit
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.ui.workbench"
|
||||
name="%pluginName"
|
||||
version="3.0.1"
|
||||
provider-name="%providerName"
|
||||
class="org.eclipse.ui.internal.WorkbenchPlugin">
|
||||
|
||||
<runtime>
|
||||
<!-- N.B.: Do not re-order.
|
||||
compatibility.jar only exists in configurations providing extra binary
|
||||
compatibility for pre-3.0 plug-ins.
|
||||
compatibility.jar is contributed by a fragment.
|
||||
compatibility.jar must end up on the plug-in classpath before workbench.jar
|
||||
since it redefines some classes found in workbench.jar. -->
|
||||
<library name="compatibility.jar">
|
||||
<export name="*"/>
|
||||
<packages prefixes="org.eclipse.ui.internal"/>
|
||||
</library>
|
||||
<library name="workbench.jar">
|
||||
<export name="*"/>
|
||||
<packages prefixes="org.eclipse.ui, org.eclipse.jface"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
<import plugin="org.eclipse.help"/>
|
||||
<import plugin="org.eclipse.jface"/>
|
||||
<import plugin="org.eclipse.swt"/>
|
||||
<import plugin="org.eclipse.core.expressions"/>
|
||||
</requires>
|
||||
|
||||
<extension
|
||||
point="org.eclipse.core.runtime.preferences">
|
||||
<initializer
|
||||
class="org.eclipse.ui.internal.WorkbenchPreferenceInitializer"/>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||
Reference in New Issue
Block a user