reorganized commons-ls bundle inclusions to avoid feature inclusion
This commit is contained in:
@@ -75,4 +75,40 @@
|
||||
<category name="Spring Tool Suite 4 Language Server Integrations for Eclipse" />
|
||||
</feature>
|
||||
|
||||
<bundle id="org.springframework.tooling.ls.eclipse.commons">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
<feature id="tm-feature">
|
||||
<category name="Uncategorized"/>
|
||||
</feature>
|
||||
|
||||
<bundle id="org.eclipse.lsp4e">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
<bundle id="org.eclipse.lsp4j">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
<bundle id="org.eclipse.lsp4j.jsonrpc">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
<bundle id="org.eclipse.xtext.xbase.lib">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
<bundle id="com.google.gson">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
<bundle id="org.jcodings">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
<bundle id="org.joni">
|
||||
<category name="Uncategorized"/>
|
||||
</bundle>
|
||||
|
||||
</site>
|
||||
|
||||
@@ -26,11 +26,4 @@
|
||||
unpack="false">
|
||||
</plugin>
|
||||
|
||||
<plugin
|
||||
id="org.springframework.tooling.ls.eclipse.commons"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false">
|
||||
</plugin>
|
||||
</feature>
|
||||
|
||||
@@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Eclipse Language Server Commons
|
||||
Bundle-SymbolicName: org.springframework.tooling.ls.eclipse.commons;singleton:=true
|
||||
Bundle-Version: 4.0.0.qualifier
|
||||
Bundle-Activator: org.springframework.tooling.ls.eclipse.commons.LsEclipseCommonsActivator
|
||||
Bundle-Vendor: Pivotal, Inc.
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
package org.springframework.tooling.ls.eclipse.commons;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
||||
|
||||
/**
|
||||
* The activator class controls the plug-in life cycle
|
||||
*/
|
||||
public class LsEclipseCommonsActivator extends AbstractUIPlugin {
|
||||
|
||||
// The plug-in ID
|
||||
public static final String PLUGIN_ID = "org.springframework.tooling.ls.eclipse.commons"; //$NON-NLS-1$
|
||||
|
||||
// The shared instance
|
||||
private static LsEclipseCommonsActivator plugin;
|
||||
|
||||
/**
|
||||
* The constructor
|
||||
*/
|
||||
public LsEclipseCommonsActivator() {
|
||||
}
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
|
||||
*/
|
||||
public void start(BundleContext context) throws Exception {
|
||||
super.start(context);
|
||||
plugin = this;
|
||||
}
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
|
||||
*/
|
||||
public void stop(BundleContext context) throws Exception {
|
||||
plugin = null;
|
||||
super.stop(context);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the shared instance
|
||||
*
|
||||
* @return the shared instance
|
||||
*/
|
||||
public static LsEclipseCommonsActivator getDefault() {
|
||||
return plugin;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -10,10 +10,7 @@
|
||||
*******************************************************************************/
|
||||
package org.springframework.tooling.ls.eclipse.commons;
|
||||
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
import org.eclipse.lsp4j.jsonrpc.services.JsonNotification;
|
||||
import org.eclipse.lsp4j.jsonrpc.services.JsonRequest;
|
||||
import org.eclipse.lsp4j.services.LanguageClient;
|
||||
|
||||
/**
|
||||
|
||||
@@ -28,6 +28,10 @@
|
||||
|
||||
<category-def name="deps" label="Dependencies"/>
|
||||
|
||||
<bundle id="org.springframework.tooling.ls.eclipse.commons">
|
||||
<category name="deps"/>
|
||||
</bundle>
|
||||
|
||||
<feature id="tm-feature">
|
||||
<category name="deps"/>
|
||||
</feature>
|
||||
|
||||
@@ -8,6 +8,10 @@
|
||||
|
||||
<category-def name="deps" label="Dependencies"/>
|
||||
|
||||
<bundle id="org.springframework.tooling.ls.eclipse.commons">
|
||||
<category name="deps"/>
|
||||
</bundle>
|
||||
|
||||
<bundle id="org.eclipse.lsp4e">
|
||||
<category name="deps"/>
|
||||
</bundle>
|
||||
|
||||
Reference in New Issue
Block a user