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;
|
2020-06-05 10:40:42 +02:00
|
|
|
requires transitive org.xbib.net.url;
|
2020-07-06 00:08:07 +02:00
|
|
|
requires transitive io.netty.buffer;
|
|
|
|
requires transitive io.netty.common;
|
|
|
|
requires transitive io.netty.transport;
|
|
|
|
requires transitive io.netty.handler;
|
|
|
|
requires transitive io.netty.codec;
|
|
|
|
requires transitive io.netty.codec.http;
|
|
|
|
requires transitive io.netty.codec.http2;
|
2020-05-20 14:56:37 +02:00
|
|
|
requires java.logging;
|
|
|
|
}
|