97 lines
3.6 KiB
XML
97 lines
3.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?eclipse version="3.4"?>
|
|
<plugin>
|
|
|
|
<extension
|
|
point="org.eclipse.core.contenttype.contentTypes">
|
|
<content-type
|
|
base-type="org.eclipse.jdt.core.javaProperties"
|
|
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
|
|
base-type="org.eclipse.core.runtime.text"
|
|
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
|
|
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">
|
|
<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.springframework.boot.ide.properties.servers.SpringPropertiesPresentationReconciler"
|
|
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.core.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.lsp4e.languageServer">
|
|
<server
|
|
class="org.springframework.boot.ide.properties.servers.SpringBootPropertiesLanguageServer"
|
|
id="org.eclipse.languageserver.languages.springbootproperties"
|
|
label="Spring Boot Properties Language Server">
|
|
</server>
|
|
<contentTypeMapping
|
|
contentType="org.springframework.boot.ide.properties.application.properties"
|
|
id="org.eclipse.languageserver.languages.springbootproperties">
|
|
</contentTypeMapping>
|
|
<contentTypeMapping
|
|
contentType="org.springframework.boot.ide.properties.application.yml"
|
|
id="org.eclipse.languageserver.languages.springbootproperties">
|
|
</contentTypeMapping>
|
|
</extension>
|
|
|
|
</plugin>
|