java-commons/muscript/src/main/java/module-info.java
JFronny af6252522d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
BREAKING(logger): use System.Logger instead of SLF4J
2024-03-14 13:57:12 +01:00

14 lines
695 B
Java

module io.gitlab.jfronny.commons.muscript {
requires io.gitlab.jfronny.commons;
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;
}