-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
9 changed files
with
161 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2024 Thiago Henrique Hupner and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
******************************************************************************/ | ||
|
||
module org.eclipse.lsp4j.debug { | ||
requires com.google.gson; | ||
requires org.eclipse.lsp4j.jsonrpc; | ||
requires org.eclipse.lsp4j.jsonrpc.debug; | ||
|
||
exports org.eclipse.lsp4j.debug; | ||
exports org.eclipse.lsp4j.debug.adapters; | ||
exports org.eclipse.lsp4j.debug.launch; | ||
exports org.eclipse.lsp4j.debug.services; | ||
} |
21 changes: 21 additions & 0 deletions
21
org.eclipse.lsp4j.generator/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2024 Thiago Henrique Hupner and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
******************************************************************************/ | ||
|
||
module org.eclipse.lsp4j.generator { | ||
|
||
requires com.google.common; | ||
requires com.google.gson; | ||
requires org.eclipse.xtend.lib.macro; | ||
requires org.eclipse.lsp4j.jsonrpc; | ||
|
||
exports org.eclipse.lsp4j.generator; | ||
} |
21 changes: 21 additions & 0 deletions
21
org.eclipse.lsp4j.jsonrpc.debug/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2024 Thiago Henrique Hupner and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
******************************************************************************/ | ||
|
||
module org.eclipse.lsp4j.jsonrpc.debug { | ||
requires com.google.gson; | ||
requires org.eclipse.lsp4j.jsonrpc; | ||
|
||
exports org.eclipse.lsp4j.jsonrpc.debug; | ||
exports org.eclipse.lsp4j.jsonrpc.debug.adapters; | ||
exports org.eclipse.lsp4j.jsonrpc.debug.json; | ||
exports org.eclipse.lsp4j.jsonrpc.debug.messages; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2024 Thiago Henrique Hupner and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
******************************************************************************/ | ||
|
||
module org.eclipse.lsp4j.jsonrpc { | ||
|
||
requires java.logging; | ||
requires com.google.gson; | ||
|
||
exports org.eclipse.lsp4j.jsonrpc; | ||
exports org.eclipse.lsp4j.jsonrpc.json; | ||
exports org.eclipse.lsp4j.jsonrpc.json.adapters; | ||
exports org.eclipse.lsp4j.jsonrpc.messages; | ||
exports org.eclipse.lsp4j.jsonrpc.services; | ||
exports org.eclipse.lsp4j.jsonrpc.util; | ||
exports org.eclipse.lsp4j.jsonrpc.validation; | ||
} |
19 changes: 19 additions & 0 deletions
19
org.eclipse.lsp4j.websocket.jakarta/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2024 Thiago Henrique Hupner and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
******************************************************************************/ | ||
|
||
module org.eclipse.lsp4j.websocket.jakarta { | ||
requires jakarta.websocket; | ||
requires java.logging; | ||
requires org.eclipse.lsp4j.jsonrpc; | ||
|
||
exports org.eclipse.lsp4j.websocket.jakarta; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
org.eclipse.lsp4j.websocket/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2024 Thiago Henrique Hupner and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
******************************************************************************/ | ||
|
||
module org.eclipse.lsp4j.websocket { | ||
requires javax.websocket.api; | ||
requires java.logging; | ||
requires org.eclipse.lsp4j.jsonrpc; | ||
|
||
exports org.eclipse.lsp4j.websocket; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2024 Thiago Henrique Hupner and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
******************************************************************************/ | ||
|
||
module org.eclipse.lsp4j { | ||
|
||
requires com.google.gson; | ||
requires org.eclipse.lsp4j.jsonrpc; | ||
|
||
exports org.eclipse.lsp4j; | ||
exports org.eclipse.lsp4j.adapters; | ||
exports org.eclipse.lsp4j.launch; | ||
exports org.eclipse.lsp4j.services; | ||
exports org.eclipse.lsp4j.util; | ||
} |