11 lines
374 B
Java
11 lines
374 B
Java
|
|
module com.zhangmeng.windowportbind {
|
||
|
|
requires javafx.controls;
|
||
|
|
requires javafx.fxml;
|
||
|
|
requires javafx.base;
|
||
|
|
|
||
|
|
opens com.zhangmeng.windowportbind to javafx.fxml;
|
||
|
|
exports com.zhangmeng.windowportbind;
|
||
|
|
exports com.zhangmeng.windowportbind.utils;
|
||
|
|
exports com.zhangmeng.windowportbind.dto;
|
||
|
|
opens com.zhangmeng.windowportbind.utils to javafx.fxml;
|
||
|
|
}
|