Skip to content

Commit

Permalink
Reorganize dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-m-knight-gs committed Jan 4, 2024
1 parent 999eb1b commit 4337c71
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions legend-engine-ide-lsp-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,27 @@
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>

<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j</artifactId>
<version>${lsp4j.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.jsonrpc</artifactId>
<version>${lsp4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!-- LEGEND ENGINE LSP -->
<dependency>
Expand All @@ -67,18 +88,15 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>

<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j</artifactId>
<version>${lsp4j.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.jsonrpc</artifactId>
<version>${lsp4j.version}</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 4337c71

Please sign in to comment.