
* added package- and module-info.java, changed JRE from 8 to 11 * moved ObjectProcessor into the processors package Co-authored-by: CyB3RC0nN0R <kske@outlook.de>
16 lines
377 B
Java
16 lines
377 B
Java
/**
|
|
* This module contains all classes defining the server application of the Envoy
|
|
* project.
|
|
*
|
|
* @author Kai S. K. Engelbart
|
|
* @author Leon Hofmeister
|
|
* @author Maximilian Käfer
|
|
* @since Envoy Server Standalone v0.1-beta
|
|
*/
|
|
module envoy.server {
|
|
|
|
requires transitive envoy.common;
|
|
requires transitive java.nio.server;
|
|
requires transitive java.persistence;
|
|
}
|