-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathmodule-info.java
More file actions
38 lines (36 loc) · 1.38 KB
/
module-info.java
File metadata and controls
38 lines (36 loc) · 1.38 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
27
28
29
30
31
32
33
34
35
36
37
38
import org.jspecify.annotations.NullMarked;
/**
* Adventure: a serverside user interface library for Minecraft: Java Edition.
*
* <p>See the <a href="https://docs.papermc.io/adventure/">documentation</a>
* for usage and dependency information for this project and associated libraries.</p>
*/
@NullMarked
module net.kyori.adventure.api {
requires transitive net.kyori.adventure.key;
requires static transitive org.jspecify;
requires static transitive org.jetbrains.annotations;
exports net.kyori.adventure;
exports net.kyori.adventure.audience;
exports net.kyori.adventure.bossbar;
exports net.kyori.adventure.builder;
exports net.kyori.adventure.chat;
exports net.kyori.adventure.dialog;
exports net.kyori.adventure.identity;
exports net.kyori.adventure.inventory;
exports net.kyori.adventure.nbt.api;
exports net.kyori.adventure.permission;
exports net.kyori.adventure.pointer;
exports net.kyori.adventure.resource;
exports net.kyori.adventure.sound;
exports net.kyori.adventure.text;
exports net.kyori.adventure.text.event;
exports net.kyori.adventure.text.flattener;
exports net.kyori.adventure.text.format;
exports net.kyori.adventure.text.object;
exports net.kyori.adventure.text.renderer;
exports net.kyori.adventure.text.serializer;
exports net.kyori.adventure.title;
exports net.kyori.adventure.translation;
exports net.kyori.adventure.util;
}