eometry-test.1.0.3.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeometry-test Show documentation
Show all versions of jeometry-test Show documentation
Jeometry, a Mathematic and Geometry library for Java
/**
* The Jeometry Test module
* @author Julien Seinturier - COMEX S.A. - [email protected] - https://github.com/jorigin/jeometry
* @since 1.0.3
*/
module org.jeometry.test {
exports org.jeometry.test.factory;
exports org.jeometry.test.geom2D.point;
exports org.jeometry.test.geom3D;
exports org.jeometry.test.geom3D.point;
exports org.jeometry.test.geom3D.transform;
exports org.jeometry.test.math;
exports org.jeometry.test.math.decomposition;
exports org.jeometry.test.math.solver;
requires transitive org.jeometry.api;
requires transitive java.desktop;
requires transitive java.logging;
requires org.jcommon;
requires transitive org.junit.jupiter.api;
}