Skip to content

Instantly share code, notes, and snippets.

@NipunaMarcus
Created September 23, 2019 15:03
Show Gist options
  • Save NipunaMarcus/2984bcbaa99d380587231a6ddfa30b6e to your computer and use it in GitHub Desktop.
Save NipunaMarcus/2984bcbaa99d380587231a6ddfa30b6e to your computer and use it in GitHub Desktop.
<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">
<groupId>org.hello.ls</groupId>
<modelVersion>4.0.0</modelVersion>
<artifactId>hellols-parent</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j</artifactId>
<version>${lsp4j.version}</version>
</dependency>
</dependencies>
<modules>
<module>language-server</module>
<module>launcher</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<lsp4j.version>0.4.1</lsp4j.version>
</properties>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment