|
| 1 | +import org.jspecify.annotations.NullMarked; |
| 2 | + |
| 3 | +/** |
| 4 | + * Adventure: a serverside user interface library for Minecraft: Java Edition. |
| 5 | + * |
| 6 | + * <p>See the <a href="https://docs.papermc.io/adventure/">documentation</a> |
| 7 | + * for usage and dependency information for this project and associated libraries.</p> |
| 8 | + */ |
| 9 | +@NullMarked |
| 10 | +module net.kyori.adventure.api { |
| 11 | + requires transitive net.kyori.adventure.key; |
| 12 | + requires transitive static org.jspecify; |
| 13 | + |
| 14 | + exports net.kyori.adventure; |
| 15 | + exports net.kyori.adventure.audience; |
| 16 | + exports net.kyori.adventure.bossbar; |
| 17 | + exports net.kyori.adventure.builder; |
| 18 | + exports net.kyori.adventure.chat; |
| 19 | + exports net.kyori.adventure.dialog; |
| 20 | + exports net.kyori.adventure.identity; |
| 21 | + exports net.kyori.adventure.internal; |
| 22 | + exports net.kyori.adventure.inventory; |
| 23 | + exports net.kyori.adventure.nbt.api; |
| 24 | + exports net.kyori.adventure.permission; |
| 25 | + exports net.kyori.adventure.pointer; |
| 26 | + exports net.kyori.adventure.resource; |
| 27 | + exports net.kyori.adventure.sound; |
| 28 | + exports net.kyori.adventure.text; |
| 29 | + exports net.kyori.adventure.text.event; |
| 30 | + exports net.kyori.adventure.text.flattener; |
| 31 | + exports net.kyori.adventure.text.format; |
| 32 | + exports net.kyori.adventure.text.object; |
| 33 | + exports net.kyori.adventure.text.renderer; |
| 34 | + exports net.kyori.adventure.text.serializer; |
| 35 | + exports net.kyori.adventure.title; |
| 36 | + exports net.kyori.adventure.translation; |
| 37 | + exports net.kyori.adventure.util; |
| 38 | +} |
0 commit comments