2020-05-20 14:56:37 +02:00
|
|
|
module org.xbib.netty.http.common {
|
|
|
|
exports org.xbib.netty.http.common;
|
|
|
|
exports org.xbib.netty.http.common.cookie;
|
|
|
|
exports org.xbib.netty.http.common.mime;
|
|
|
|
exports org.xbib.netty.http.common.security;
|
|
|
|
exports org.xbib.netty.http.common.util;
|
2021-12-10 22:50:22 +01:00
|
|
|
exports org.xbib.netty.http.common.ws;
|
2021-02-02 16:35:18 +01:00
|
|
|
requires org.xbib.net.url;
|
|
|
|
requires io.netty.buffer;
|
|
|
|
requires io.netty.common;
|
|
|
|
requires io.netty.transport;
|
|
|
|
requires io.netty.handler;
|
|
|
|
requires io.netty.codec;
|
|
|
|
requires io.netty.codec.http;
|
|
|
|
requires io.netty.codec.http2;
|
2020-05-20 14:56:37 +02:00
|
|
|
requires java.logging;
|
|
|
|
}
|