229 lines
8.3 KiB
XML
229 lines
8.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?eclipse version="3.4"?>
|
|
<plugin>
|
|
|
|
<extension
|
|
point="org.eclipse.lsp4e.languageServer">
|
|
<server
|
|
class="org.springframework.tooling.boot.ls.DelegatingStreamConnectionProvider"
|
|
id="org.eclipse.languageserver.languages.springboot"
|
|
clientImpl="org.springframework.tooling.ls.eclipse.commons.STS4LanguageClientImpl"
|
|
label="Spring Boot Language Server">
|
|
</server>
|
|
<contentTypeMapping
|
|
contentType="org.eclipse.jdt.core.javaSource"
|
|
id="org.eclipse.languageserver.languages.springboot">
|
|
</contentTypeMapping>
|
|
<contentTypeMapping
|
|
contentType="org.springframework.boot.ide.properties.application.properties"
|
|
id="org.eclipse.languageserver.languages.springboot"
|
|
languageId="spring-boot-properties">
|
|
</contentTypeMapping>
|
|
<contentTypeMapping
|
|
contentType="org.springframework.boot.ide.properties.application.yml"
|
|
id="org.eclipse.languageserver.languages.springboot"
|
|
languageId="spring-boot-properties-yaml">
|
|
</contentTypeMapping>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.core.contenttype.contentTypes">
|
|
<content-type
|
|
default-charset="ISO-8859-1"
|
|
id="org.springframework.boot.ide.properties.application.properties"
|
|
name="Spring Properties File"
|
|
priority="high">
|
|
</content-type>
|
|
<file-association
|
|
content-type="org.springframework.boot.ide.properties.application.properties"
|
|
file-names="application.properties,application-dev.properties">
|
|
</file-association>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.core.contenttype.contentTypes">
|
|
<content-type
|
|
default-charset="UTF-8"
|
|
id="org.springframework.boot.ide.properties.application.yml"
|
|
name="Spring Yaml Properties File"
|
|
priority="high">
|
|
</content-type>
|
|
<file-association
|
|
content-type="org.springframework.boot.ide.properties.application.yml"
|
|
file-names="application.yml,bootstrap.yml,application-dev.yml">
|
|
</file-association>
|
|
</extension>
|
|
|
|
<extension
|
|
id="springbootjava-completion-computer"
|
|
point="org.eclipse.jdt.ui.javaCompletionProposalComputer">
|
|
<javaCompletionProposalComputer
|
|
activate="true"
|
|
categoryId="org.eclipse.jdt.ui.defaultProposalCategory"
|
|
class="org.springframework.tooling.boot.ls.jdt.SpringBootJavaCompletionProposalComputer"
|
|
needsSortingAfterFiltering="false">
|
|
</javaCompletionProposalComputer>
|
|
</extension>
|
|
|
|
<extension
|
|
id="springbootjava-hover-provider"
|
|
point="org.eclipse.jdt.ui.javaEditorTextHovers">
|
|
<hover
|
|
activate="true"
|
|
class="org.springframework.tooling.boot.ls.jdt.SpringBootJavaHoverProvider"
|
|
id="org.springframework.boot.ide.java.servers.hoverprovider">
|
|
</hover>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.core.filebuffers.documentSetup">
|
|
<participant
|
|
class="org.eclipse.lsp4e.ConnectDocumentToLanguageServerSetupParticipant"
|
|
contentTypeId="org.eclipse.jdt.core.javaSource">
|
|
</participant>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.ui.preferencePages">
|
|
<page
|
|
category="org.springframework.tooling.ls.eclipse.commons.console.preferences"
|
|
class="org.springframework.tooling.boot.ls.BootLanguageServerPreferencesPage"
|
|
id="org.springframework.tooling.boot.java.ls.preferences"
|
|
name="Spring Boot Language Server">
|
|
</page>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.core.runtime.preferences">
|
|
<initializer
|
|
class="org.springframework.tooling.boot.ls.PrefsInitializer">
|
|
</initializer>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.ui.handlers">
|
|
<handler
|
|
class="org.springframework.tooling.boot.ls.commands.OpenFullyQualifiedNameInEditor"
|
|
commandId="org.springframework.tooling.boot.ls.OpenJavaType">
|
|
</handler>
|
|
<handler
|
|
class="org.springframework.tooling.boot.ls.commands.OpenResourceInEditor"
|
|
commandId="org.springframework.tooling.boot.ls.OpenResourceInEditor">
|
|
</handler>
|
|
</extension>
|
|
<extension
|
|
point="org.eclipse.ui.commands">
|
|
<command
|
|
id="org.springframework.tooling.boot.ls.OpenJavaType"
|
|
name="Open Java Type in Editor">
|
|
<commandParameter
|
|
id="fqName"
|
|
name="fqName"
|
|
optional="false">
|
|
</commandParameter>
|
|
</command>
|
|
<command
|
|
id="org.springframework.tooling.boot.ls.OpenResourceInEditor"
|
|
name="Open File in Editor">
|
|
<commandParameter
|
|
id="path"
|
|
name="path"
|
|
optional="false">
|
|
</commandParameter>
|
|
</command>
|
|
</extension>
|
|
|
|
|
|
<extension
|
|
point="org.eclipse.ui.editors">
|
|
<editor
|
|
class="org.eclipse.ui.internal.genericeditor.ExtensionBasedTextEditor"
|
|
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
|
|
icon="icons/spring_obj.gif"
|
|
id="SpringBootPropertyEditor"
|
|
name="Generic Editor - Spring Properties"
|
|
symbolicFontName="org.eclipse.jdt.ui.PropertiesFileEditor.textfont">
|
|
<contentTypeBinding
|
|
contentTypeId="org.springframework.boot.ide.properties.application.properties"
|
|
/>
|
|
</editor>
|
|
</extension>
|
|
|
|
<!--
|
|
<extension
|
|
point="org.eclipse.ui.editors">
|
|
<editorContentTypeBinding
|
|
contentTypeId="org.springframework.boot.ide.properties.application.properties"
|
|
editorId="org.eclipse.ui.genericeditor.GenericEditor">
|
|
</editorContentTypeBinding>
|
|
</extension>
|
|
-->
|
|
|
|
<extension
|
|
point="org.eclipse.ui.editors">
|
|
<editor
|
|
class="org.springframework.tooling.ls.eclipse.commons.YamlGenericEditor"
|
|
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
|
|
icon="icons/spring_yml.png"
|
|
id="SpringBootYMLPropertyEditor"
|
|
name="Generic Editor - Spring YAML Properties"
|
|
symbolicFontName="org.eclipse.jdt.ui.PropertiesFileEditor.textfont">
|
|
<contentTypeBinding
|
|
contentTypeId="org.springframework.boot.ide.properties.application.yml"
|
|
/>
|
|
</editor>
|
|
</extension>
|
|
|
|
<!--
|
|
<extension
|
|
point="org.eclipse.ui.editors">
|
|
<editorContentTypeBinding
|
|
contentTypeId="org.springframework.boot.ide.properties.application.yml"
|
|
editorId="org.eclipse.ui.genericeditor.GenericEditor">
|
|
</editorContentTypeBinding>
|
|
</extension>
|
|
-->
|
|
|
|
<extension
|
|
point="org.eclipse.ui.genericeditor.presentationReconcilers">
|
|
<presentationReconciler
|
|
class="org.eclipse.tm4e.ui.text.TMPresentationReconciler"
|
|
contentType="org.springframework.boot.ide.properties.application.properties">
|
|
</presentationReconciler>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.ui.genericeditor.presentationReconcilers">
|
|
<presentationReconciler
|
|
class="org.eclipse.tm4e.ui.text.TMPresentationReconciler"
|
|
contentType="org.springframework.boot.ide.properties.application.yml">
|
|
</presentationReconciler>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.tm4e.registry.grammars">
|
|
<grammar
|
|
scopeName="source.yaml"
|
|
path="./syntaxes/YAML.tmLanguage" >
|
|
</grammar>
|
|
<scopeNameContentTypeBinding
|
|
contentTypeId="org.springframework.boot.ide.properties.application.yml"
|
|
scopeName="source.yaml">
|
|
</scopeNameContentTypeBinding>
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.tm4e.registry.grammars">
|
|
<grammar
|
|
scopeName="source.java-properties"
|
|
path="./syntaxes/JavaProperties.tmLanguage" >
|
|
</grammar>
|
|
<scopeNameContentTypeBinding
|
|
contentTypeId="org.springframework.boot.ide.properties.application.properties"
|
|
scopeName="source.java-properties">
|
|
</scopeNameContentTypeBinding>
|
|
</extension>
|
|
|
|
|
|
</plugin>
|