-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmodule-info.java
More file actions
26 lines (23 loc) · 1.06 KB
/
module-info.java
File metadata and controls
26 lines (23 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
/**
* GitHub Copilot SDK for Java.
*/
module com.github.copilot.sdk.java {
requires transitive com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.core;
requires transitive com.fasterxml.jackson.databind;
requires com.fasterxml.jackson.datatype.jsr310;
requires static com.github.spotbugs.annotations;
requires static java.compiler;
requires static java.net.http;
requires java.logging;
exports com.github.copilot.sdk;
exports com.github.copilot.sdk.generated;
exports com.github.copilot.sdk.generated.rpc;
exports com.github.copilot.sdk.json;
opens com.github.copilot.sdk to com.fasterxml.jackson.databind;
opens com.github.copilot.sdk.generated to com.fasterxml.jackson.databind;
opens com.github.copilot.sdk.json to com.fasterxml.jackson.databind;
}