9896339f92
* added module- and package-info.java, changed JRE from 8 to 11 * updated maven from Java 1.8 to 11 Co-authored-by: CyB3RC0nN0R <kske@outlook.de>
18 lines
411 B
Java
18 lines
411 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 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;
|
|
}
|