java-commons/muscript/src/main/java/module-info.java
JFronny 8aebf179d4
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
BREAKING: modularize
2023-09-21 21:08:40 +02:00

14 lines
685 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;
}