CyB3RC0nN0R
5cd5d516c0
* Added JavaFX and FXML dependencies to pom.xml and module-info.java * Added Startup Application * Added ChatScene with ChatSceneController
22 lines
525 B
Java
22 lines
525 B
Java
/**
|
|
* This module contains all classes defining the client application of the Envoy
|
|
* project.
|
|
*
|
|
* @author Kai S. K. Engelbart
|
|
* @author Leon Hofmeister
|
|
* @author Maximilian Käfer
|
|
* @since Envoy Client v0.1-beta
|
|
*/
|
|
module envoy {
|
|
|
|
requires transitive envoy.common;
|
|
requires transitive java.desktop;
|
|
requires transitive java.logging;
|
|
requires transitive java.naming;
|
|
requires transitive java.prefs;
|
|
requires javafx.controls;
|
|
requires javafx.fxml;
|
|
|
|
opens envoy.client.ui to javafx.graphics, javafx.fxml;
|
|
}
|