fix netty proxy handler dependency, update to xbib net 2.1.0
This commit is contained in:
parent
faf573ff5a
commit
aa82f681e3
4 changed files with 4 additions and 6 deletions
|
@ -1,12 +1,12 @@
|
||||||
group = org.xbib
|
group = org.xbib
|
||||||
name = netty-http
|
name = netty-http
|
||||||
version = 4.1.50.0
|
version = 4.1.50.1
|
||||||
|
|
||||||
gradle.wrapper.version = 6.4.1
|
gradle.wrapper.version = 6.4.1
|
||||||
netty.version = 4.1.50.Final
|
netty.version = 4.1.50.Final
|
||||||
tcnative.version = 2.0.29.Final
|
tcnative.version = 2.0.29.Final
|
||||||
tcnative-legacy-macosx.version = 2.0.26.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
|
bouncycastle.version = 1.64
|
||||||
reactivestreams.version = 1.0.2
|
reactivestreams.version = 1.0.2
|
||||||
xbib-guice.version = 4.0.4
|
xbib-guice.version = 4.0.4
|
||||||
|
@ -15,6 +15,6 @@ conscrypt.version = 2.2.1
|
||||||
jackson.version = 2.11.0
|
jackson.version = 2.11.0
|
||||||
mockito.version = 3.3.3
|
mockito.version = 3.3.3
|
||||||
asciidoclet.version = 1.5.6
|
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
|
junit.version = 5.6.2
|
||||||
junit4.version = 4.13
|
junit4.version = 4.13
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
module org.xbib.netty.http.client.api {
|
module org.xbib.netty.http.client.api {
|
||||||
exports org.xbib.netty.http.client.api;
|
exports org.xbib.netty.http.client.api;
|
||||||
requires transitive org.xbib.netty.http.common;
|
requires transitive org.xbib.netty.http.common;
|
||||||
requires org.xbib.net.url;
|
|
||||||
requires io.netty.buffer;
|
requires io.netty.buffer;
|
||||||
requires io.netty.common;
|
requires io.netty.common;
|
||||||
requires io.netty.codec.http;
|
requires io.netty.codec.http;
|
||||||
|
|
|
@ -2,7 +2,7 @@ import org.apache.tools.ant.taskdefs.condition.Os
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(":netty-http-client-api")
|
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 "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
||||||
testImplementation "org.conscrypt:conscrypt-openjdk-uber:${project.property('conscrypt.version')}"
|
testImplementation "org.conscrypt:conscrypt-openjdk-uber:${project.property('conscrypt.version')}"
|
||||||
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
|
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
|
||||||
|
|
|
@ -7,7 +7,6 @@ module org.xbib.netty.http.client {
|
||||||
exports org.xbib.netty.http.client.retry;
|
exports org.xbib.netty.http.client.retry;
|
||||||
exports org.xbib.netty.http.client.transport;
|
exports org.xbib.netty.http.client.transport;
|
||||||
requires transitive org.xbib.netty.http.client.api;
|
requires transitive org.xbib.netty.http.client.api;
|
||||||
requires org.xbib.net.url;
|
|
||||||
requires io.netty.buffer;
|
requires io.netty.buffer;
|
||||||
requires io.netty.common;
|
requires io.netty.common;
|
||||||
requires io.netty.codec.http;
|
requires io.netty.codec.http;
|
||||||
|
|
Loading…
Reference in a new issue