forked from hashgraph/pbj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-info.java
More file actions
23 lines (21 loc) · 885 Bytes
/
module-info.java
File metadata and controls
23 lines (21 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: Apache-2.0
import io.helidon.common.features.api.Feature;
import io.helidon.common.features.api.HelidonFlavor;
import io.helidon.common.features.api.Preview;
@Preview
@Feature(
value = "PBJConfig",
description = "WebServer gRPC-PBJ Config",
in = HelidonFlavor.SE,
path = {"WebServer", "PBJ"})
module com.hedera.pbj.grpc.helidon.config {
requires transitive io.helidon.builder.api;
requires transitive io.helidon.common.config; // indirectly used on API of generated 'PbjConfig'
requires transitive io.helidon.common;
requires transitive io.helidon.config;
requires io.helidon.webserver;
requires static io.helidon.common.features.api;
requires static io.helidon.common.features.processor;
requires static io.helidon.config.metadata.codegen;
exports com.hedera.pbj.grpc.helidon.config;
}