18 lines
418 B
Java
18 lines
418 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;
|
|
}
|