fix netty proxy handler dependency, update to xbib net 2.1.0

This commit is contained in:
Jörg Prante 2020-06-16 11:11:45 +02:00
parent faf573ff5a
commit aa82f681e3
4 changed files with 4 additions and 6 deletions

View file

@ -1,12 +1,12 @@
group = org.xbib
name = netty-http
version = 4.1.50.0
version = 4.1.50.1
gradle.wrapper.version = 6.4.1
netty.version = 4.1.50.Final
tcnative.version = 2.0.29.Final
tcnative-legacy-macosx.version = 2.0.26.Final
xbib.net.version = 2.0.4
xbib.net.version = 2.1.0
bouncycastle.version = 1.64
reactivestreams.version = 1.0.2
xbib-guice.version = 4.0.4
@ -15,6 +15,6 @@ conscrypt.version = 2.2.1
jackson.version = 2.11.0
mockito.version = 3.3.3
asciidoclet.version = 1.5.6
# uuhh, too many tests to update in rx
# uuhh, too many tests to update to jupiter in rx...
junit.version = 5.6.2
junit4.version = 4.13

View file

@ -1,7 +1,6 @@
module org.xbib.netty.http.client.api {
exports org.xbib.netty.http.client.api;
requires transitive org.xbib.netty.http.common;
requires org.xbib.net.url;
requires io.netty.buffer;
requires io.netty.common;
requires io.netty.codec.http;

View file

@ -2,7 +2,7 @@ import org.apache.tools.ant.taskdefs.condition.Os
dependencies {
api project(":netty-http-client-api")
implementation "io.netty:netty-handler-proxy:${project.property('netty.version')}"
api "io.netty:netty-handler-proxy:${project.property('netty.version')}"
testImplementation "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
testImplementation "org.conscrypt:conscrypt-openjdk-uber:${project.property('conscrypt.version')}"
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"

View file

@ -7,7 +7,6 @@ module org.xbib.netty.http.client {
exports org.xbib.netty.http.client.retry;
exports org.xbib.netty.http.client.transport;
requires transitive org.xbib.netty.http.client.api;
requires org.xbib.net.url;
requires io.netty.buffer;
requires io.netty.common;
requires io.netty.codec.http;