Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 28 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<repositories>
<repository>
Expand Down Expand Up @@ -376,6 +376,11 @@
<artifactId>org.eclipse.lsp4j</artifactId>
<version>0.22.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.debug</artifactId>
<version>0.22.0</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
Expand Down Expand Up @@ -489,7 +494,7 @@
<version>3.12.1</version>
<configuration>
<showDeprecation>true</showDeprecation>
<release>16</release>
<release>21</release>
<compilerArgs>
<arg>-XDignore.symbol.file</arg>
<arg>-parameters</arg>
Expand Down Expand Up @@ -569,6 +574,8 @@
<include>org.brotli:dec:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j.debug:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc.debug:jar:*</include>
<!-- We don't currently actually depend on these 2, but lsp4j does, so we
need to shade it in. In the future, we may rip out org.json:json,
and replace it with this, however, in which case we only need to
Expand Down Expand Up @@ -842,6 +849,24 @@
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.eclipse.lsp4j:org.eclipse.lsp4j.debug:jar:*</artifact>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc.debug:jar:*</artifact>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>com.google.code.gson:gson:jar:*</artifact>
<includes>
Expand Down
Loading
Loading