module org.wildcraft.eaz {
exports org.wildcraft.eaz;
}
//daz does not just exports it,
//It also exports eaz
module org.wildcraft.daz {
exports org.wildcraft.daz;
requires transitive org.wildcraft.eaz;
}
//By depending on daz,
//caz implicity depends on eaz
module org.wildcraft.caz {
requires org.wildcraft.daz;
}