Inceptum/launcher/src/main/java/module-info.java
JFronny 441a9b26b2
Some checks failed
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline failed
Remove manifold and add JPMS in every project except wrapper, launchwrapper and launcher-gtk
2023-05-05 18:49:56 +02:00

32 lines
1.8 KiB
Java

module io.gitlab.jfronny.inceptum.launcher {
exports io.gitlab.jfronny.inceptum.launcher;
exports io.gitlab.jfronny.inceptum.launcher.api;
exports io.gitlab.jfronny.inceptum.launcher.api.account;
exports io.gitlab.jfronny.inceptum.launcher.gson;
exports io.gitlab.jfronny.inceptum.launcher.model.curseforge;
exports io.gitlab.jfronny.inceptum.launcher.model.curseforge.response;
exports io.gitlab.jfronny.inceptum.launcher.model.fabric;
exports io.gitlab.jfronny.inceptum.launcher.model.inceptum;
exports io.gitlab.jfronny.inceptum.launcher.model.microsoft;
exports io.gitlab.jfronny.inceptum.launcher.model.microsoft.request;
exports io.gitlab.jfronny.inceptum.launcher.model.microsoft.response;
exports io.gitlab.jfronny.inceptum.launcher.model.modrinth;
exports io.gitlab.jfronny.inceptum.launcher.model.mojang;
exports io.gitlab.jfronny.inceptum.launcher.model.multimc;
exports io.gitlab.jfronny.inceptum.launcher.system.exporter;
exports io.gitlab.jfronny.inceptum.launcher.system.importer;
exports io.gitlab.jfronny.inceptum.launcher.system.instance;
exports io.gitlab.jfronny.inceptum.launcher.system.launch;
exports io.gitlab.jfronny.inceptum.launcher.system.mds;
exports io.gitlab.jfronny.inceptum.launcher.system.mds.noop;
exports io.gitlab.jfronny.inceptum.launcher.system.setup;
exports io.gitlab.jfronny.inceptum.launcher.system.setup.steps;
exports io.gitlab.jfronny.inceptum.launcher.system.source;
exports io.gitlab.jfronny.inceptum.launcher.util;
exports io.gitlab.jfronny.inceptum.launcher.util.gitignore;
requires transitive io.gitlab.jfronny.inceptum.common;
requires io.gitlab.jfronny.commons.jlhttp;
requires static org.jetbrains.annotations;
requires static io.gitlab.jfronny.gson.compile.annotations;
}