17 lines
415 B
Java
17 lines
415 B
Java
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2021, Edouard DUPIN, all right reserved
|
|
* @license MPL v2.0 (see license file)
|
|
*/
|
|
|
|
open module org.atriasoft.aknot {
|
|
exports org.atriasoft.aknot;
|
|
exports org.atriasoft.aknot.pojo;
|
|
exports org.atriasoft.aknot.annotation;
|
|
exports org.atriasoft.aknot.model;
|
|
exports org.atriasoft.aknot.exception;
|
|
|
|
requires transitive org.atriasoft.etk;
|
|
requires java.base;
|
|
}
|