2018-03-12 11:22:40 +01:00
|
|
|
dependencies {
|
2019-04-30 16:35:45 +02:00
|
|
|
implementation project(":netty-http-common")
|
|
|
|
implementation "io.netty:netty-handler:${project.property('netty.version')}"
|
|
|
|
implementation "io.netty:netty-transport-native-epoll:${project.property('netty.version')}"
|
|
|
|
implementation "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
|
|
|
|
implementation "io.netty:netty-codec-http2:${project.property('netty.version')}"
|
|
|
|
implementation "org.xbib:net-url:${project.property('xbib-net-url.version')}"
|
|
|
|
implementation "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
|
2019-06-20 23:05:03 +02:00
|
|
|
implementation "org.reactivestreams:reactive-streams:${project.property('reactivestreams.version')}"
|
2019-04-30 16:35:45 +02:00
|
|
|
testImplementation project(":netty-http-client")
|
2019-06-20 23:05:03 +02:00
|
|
|
testImplementation("org.reactivestreams:reactive-streams-tck:${project.property('reactivestreams.version')}") {
|
|
|
|
exclude module: 'testng'
|
|
|
|
}
|
2018-03-12 11:22:40 +01:00
|
|
|
}
|