mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
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:
parent
bdb5e9e51f
commit
5b6a859b57
18 changed files with 28 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -13,6 +13,7 @@ import org.eclipse.xtend.lib.annotations.Data
|
|||
|
||||
/**
|
||||
* @author Sven Efftinge - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
@Data class Document {
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@ import org.eclipse.xtext.util.CancelIndicator
|
|||
|
||||
/**
|
||||
* @author Sven Efftinge - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
class ProjectManager {
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@ import java.io.PrintStream
|
|||
|
||||
/**
|
||||
* @author Sven Efftinge - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
class ServerLauncher {
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@ import org.eclipse.xtext.resource.ResourceServiceProviderServiceLoader
|
|||
|
||||
/**
|
||||
* @author Sven Efftinge - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
class ServerModule extends AbstractModule {
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ import org.eclipse.emf.common.util.URI
|
|||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
@Singleton
|
||||
class UriExtensions {
|
||||
|
|
|
@ -26,6 +26,7 @@ import org.eclipse.xtext.validation.Issue
|
|||
|
||||
/**
|
||||
* @author Sven Efftinge - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
class WorkspaceManager {
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -11,6 +11,7 @@ import org.eclipse.xtend.lib.annotations.Accessors
|
|||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
class RequestCancelIndicator implements CancellableIndicator {
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@ import org.eclipse.xtext.util.CancelIndicator
|
|||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
@Singleton
|
||||
class RequestManager {
|
||||
|
|
|
@ -23,6 +23,7 @@ import org.eclipse.xtext.service.OperationCanceledManager
|
|||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
@Singleton
|
||||
class ContentAssistService {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -20,6 +20,7 @@ import static io.typefox.lsapi.util.LsapiFactories.*
|
|||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
@Singleton
|
||||
class HoverService {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -19,6 +19,7 @@ import org.eclipse.xtext.util.CancelIndicator
|
|||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
@Singleton
|
||||
class WorkspaceSymbolService {
|
||||
|
|
|
@ -13,6 +13,7 @@ import org.eclipse.xtext.util.CancelIndicator
|
|||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
* @since 2.11
|
||||
*/
|
||||
@FinalFieldsConstructor
|
||||
class CancelIndicatorProgressMonitor implements IProgressMonitor {
|
||||
|
|
Loading…
Reference in a new issue