This repository has been archived on 2021-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
envoy/common/src/main/java/module-info.java

21 lines
476 B
Java

/**
* This module contains all packages that are used by Envoy Client and Envoy Server Standalone at
* the same time.
*
* @author Leon Hofmeister
* @author Maximilian Käfer
* @author Kai S.K. Engelbart
* @since Envoy Common v0.1-beta
*/
module envoy.common {
exports envoy.data;
exports envoy.util;
exports envoy.exception;
exports envoy.event;
exports envoy.event.contact;
requires transitive java.logging;
requires transitive dev.kske.eventbus.core;
}