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;
|
||
|
}
|