Added missing dependencies to org.eclipse.xtext.ide project

Change-Id: I77c9c77174db46293d9bdd25e4819cf6b00e3402
Signed-off-by: akosyakov <anton.kosyakov@typefox.io>
This commit is contained in:
akosyakov 2016-06-01 15:19:30 +02:00
parent bdb5e9e51f
commit 5b6a859b57
18 changed files with 28 additions and 3 deletions

View file

@ -9,7 +9,9 @@ Bundle-ActivationPolicy: lazy
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.xtext;visibility:=reexport,
org.eclipse.xtend.lib,
org.eclipse.core.runtime;bundle-version="3.6.0"
org.eclipse.core.runtime;bundle-version="3.6.0",
io.typefox.lsapi,
io.typefox.lsapi.services
Import-Package: org.apache.log4j;version="1.2.15"
Export-Package: org.eclipse.xtext.ide;x-friends:="org.eclipse.xtend.ide",
org.eclipse.xtext.ide.editor.bracketmatching;x-friends:="org.eclipse.xtend.ide.common,org.eclipse.xtend.ide",
@ -25,4 +27,11 @@ Export-Package: org.eclipse.xtext.ide;x-friends:="org.eclipse.xtend.ide",
org.eclipse.xtext.ide.editor.navigation,
org.eclipse.xtext.ide.editor.partialEditing,
org.eclipse.xtext.ide.editor.syntaxcoloring,
org.eclipse.xtext.ide.labels;x-friends:="org.eclipse.xtext.web"
org.eclipse.xtext.ide.labels;x-friends:="org.eclipse.xtext.web",
org.eclipse.xtext.ide.server,
org.eclipse.xtext.ide.server.concurrent,
org.eclipse.xtext.ide.server.contentassist,
org.eclipse.xtext.ide.server.findReferences,
org.eclipse.xtext.ide.server.hover,
org.eclipse.xtext.ide.server.symbol,
org.eclipse.xtext.ide.util

View file

@ -13,6 +13,7 @@ import org.eclipse.xtend.lib.annotations.Data
/**
* @author Sven Efftinge - Initial contribution and API
* @since 2.11
*/
@Data class Document {

View file

@ -25,6 +25,7 @@ import static extension org.eclipse.xtext.nodemodel.util.NodeModelUtils.*
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@Singleton
class DocumentExtensions {

View file

@ -73,8 +73,8 @@ import org.eclipse.xtext.validation.Issue
import static io.typefox.lsapi.util.LsapiFactories.*
/**
*
* @author Sven Efftinge - Initial contribution and API
* @since 2.11
*/
@Accessors class LanguageServerImpl implements LanguageServer, WorkspaceService, WindowService, TextDocumentService {

View file

@ -31,6 +31,7 @@ import org.eclipse.xtext.util.CancelIndicator
/**
* @author Sven Efftinge - Initial contribution and API
* @since 2.11
*/
class ProjectManager {

View file

@ -18,6 +18,7 @@ import java.io.PrintStream
/**
* @author Sven Efftinge - Initial contribution and API
* @since 2.11
*/
class ServerLauncher {

View file

@ -18,6 +18,7 @@ import org.eclipse.xtext.resource.ResourceServiceProviderServiceLoader
/**
* @author Sven Efftinge - Initial contribution and API
* @since 2.11
*/
class ServerModule extends AbstractModule {

View file

@ -13,6 +13,7 @@ import org.eclipse.emf.common.util.URI
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@Singleton
class UriExtensions {

View file

@ -26,6 +26,7 @@ import org.eclipse.xtext.validation.Issue
/**
* @author Sven Efftinge - Initial contribution and API
* @since 2.11
*/
class WorkspaceManager {

View file

@ -11,6 +11,7 @@ import org.eclipse.xtext.util.CancelIndicator
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
interface CancellableIndicator extends CancelIndicator {
def void cancel()

View file

@ -11,6 +11,7 @@ import org.eclipse.xtend.lib.annotations.Accessors
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
class RequestCancelIndicator implements CancellableIndicator {

View file

@ -18,6 +18,7 @@ import org.eclipse.xtext.util.CancelIndicator
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@Singleton
class RequestManager {

View file

@ -23,6 +23,7 @@ import org.eclipse.xtext.service.OperationCanceledManager
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@Singleton
class ContentAssistService {

View file

@ -16,6 +16,7 @@ import org.eclipse.xtext.util.concurrent.IUnitOfWork
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@FinalFieldsConstructor
class WorkspaceResourceAccess implements IResourceAccess {

View file

@ -20,6 +20,7 @@ import static io.typefox.lsapi.util.LsapiFactories.*
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@Singleton
class HoverService {

View file

@ -39,6 +39,7 @@ import static extension org.eclipse.emf.ecore.util.EcoreUtil.*
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@Singleton
class DocumentSymbolService {

View file

@ -19,6 +19,7 @@ import org.eclipse.xtext.util.CancelIndicator
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@Singleton
class WorkspaceSymbolService {

View file

@ -13,6 +13,7 @@ import org.eclipse.xtext.util.CancelIndicator
/**
* @author kosyakov - Initial contribution and API
* @since 2.11
*/
@FinalFieldsConstructor
class CancelIndicatorProgressMonitor implements IProgressMonitor {