blob: f2c0565cbf8c2ce08a02ea11e3f16ffcf4ec0b2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module com.mavlushechka.notaryqueue {
requires javafx.controls;
requires javafx.fxml;
requires com.fasterxml.jackson.databind;
requires com.fasterxml.jackson.datatype.jsr310;
opens com.mavlushechka.notaryqueue to javafx.fxml;
exports com.mavlushechka.notaryqueue;
exports com.mavlushechka.notaryqueue.model;
opens com.mavlushechka.notaryqueue.model to javafx.fxml;
exports com.mavlushechka.notaryqueue.controller;
opens com.mavlushechka.notaryqueue.controller to javafx.fxml;
exports com.mavlushechka.notaryqueue.util;
opens com.mavlushechka.notaryqueue.util to javafx.fxml;
}
|