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 4337c71 commit d83be3b
Showing 1 changed file with 9 additions and 21 deletions.
30 changes: 9 additions & 21 deletions legend-engine-ide-lsp-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,27 +52,6 @@
</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 @@ -88,15 +67,24 @@
<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>
<exclusions>
<exclusion>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit d83be3b

Please sign in to comment.