XML LS extension for namespace resolution
This commit is contained in:
@@ -6,4 +6,5 @@ bin.includes = META-INF/,\
|
||||
servers/,\
|
||||
syntaxes/,\
|
||||
icons/,\
|
||||
about.html
|
||||
about.html,\
|
||||
jars/
|
||||
|
||||
@@ -355,5 +355,14 @@
|
||||
class="org.springframework.tooling.boot.ls.prefs.RemoteAppsFromPrefsDataContributor">
|
||||
</injection>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.wildwebdeveloper.xml.lemminxExtension">
|
||||
<jar
|
||||
path="jars/commons-lsp-extensions.jar">
|
||||
</jar>
|
||||
<jar
|
||||
path="jars/xml-ls-extension.jar">
|
||||
</jar>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||
|
||||
@@ -43,6 +43,33 @@
|
||||
<outputDirectory>${project.build.directory}/../servers/spring-boot-language-server</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>xml-extension</id>
|
||||
<phase>prepare-package</phase>
|
||||
<goals>
|
||||
<goal>copy</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>org.springframework.ide.vscode</groupId>
|
||||
<artifactId>xml-ls-extension</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<overWrite>true</overWrite>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>org.springframework.ide.vscode</groupId>
|
||||
<artifactId>commons-lsp-extensions</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<overWrite>true</overWrite>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
<stripVersion>true</stripVersion>
|
||||
<overWriteReleases>true</overWriteReleases>
|
||||
<overWriteSnapshots>true</overWriteSnapshots>
|
||||
<outputDirectory>${project.build.directory}/../jars</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
@@ -71,6 +98,9 @@
|
||||
<fileset>
|
||||
<directory>servers</directory>
|
||||
</fileset>
|
||||
<fileset>
|
||||
<directory>jars</directory>
|
||||
</fileset>
|
||||
</filesets>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
Reference in New Issue
Block a user