java-commons/muscript/src/main/java/module-info.java
2023-09-30 17:34:49 +02:00

15 lines
743 B
Java

module io.gitlab.jfronny.commons.muscript {
requires io.gitlab.jfronny.commons;
requires io.gitlab.jfronny.commons.logging;
requires static org.jetbrains.annotations;
exports io.gitlab.jfronny.muscript;
exports io.gitlab.jfronny.muscript.compiler;
exports io.gitlab.jfronny.muscript.ast; // General purpose expressions (needed to properly interact with parsed)
exports io.gitlab.jfronny.muscript.debug;
exports io.gitlab.jfronny.muscript.error;
exports io.gitlab.jfronny.muscript.libs;
exports io.gitlab.jfronny.muscript.data;
exports io.gitlab.jfronny.muscript.data.dynamic;
exports io.gitlab.jfronny.muscript.data.dynamic.additional;
exports io.gitlab.jfronny.muscript.data.dynamic.type;
}