vscode-xml: Crash on a simple POM file

The language server crashes and I get the following message:

The XML language server crashed 5 times in the last 10 minutes. The server will not be restarted.

The file in question is:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.learning.kafka</groupId>
    <artifactId>kafka-getting-started</artifactId>

    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>org.apache.kafka</groupId>
            <artifactId>kafka_2.13</artifactId>
            <version>2.7.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Comments: 18 (16 by maintainers)

Commits related to this issue

Most upvoted comments

Once this issue is addressed (which should regress support for Alpine Linux, or any platform not providing libc), we can address that with #593 . According to https://code.visualstudio.com/api/working-with-extensions/publishing-extension#platformspecific-extensions , there is support for targeting alpine-x64.

CC’ing @benoitf & @svor

Bingo, I’m able to reproduce as well. It started happening the moment

@rgrunber I cannot reproduce it with my Windows OS -( Do you think you could have time to investigate the problem?