Skip to content

Commit 3643636

Browse files
committed
move version for netty boringssl to dependency management section
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent ef6cb56 commit 3643636

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ subprojects {
3232
ext['logback.version'] = '1.2.3'
3333
ext['findbugs.version'] = '3.0.2'
3434
ext['netty.version'] = '4.1.29.Final'
35+
ext['netty-boringssl.version'] = '2.0.18.Final'
3536
ext['hdrhistogram.version'] = '2.1.10'
3637
ext['jctool.version'] = '2.1.2'
3738
ext['mockito.version'] = '2.23.0'
@@ -51,6 +52,7 @@ subprojects {
5152
dependency "ch.qos.logback:logback-classic:${ext['logback.version']}"
5253
dependency "com.google.code.findbugs:jsr305:${ext['findbugs.version']}"
5354
dependency "io.netty:netty-buffer:${ext['netty.version']}"
55+
dependency "io.netty:netty-tcnative-boringssl-static:${ext['netty-boringssl.version']}"
5456
dependency "io.micrometer:micrometer-core:${ext['micrometer.version']}"
5557
dependency "org.assertj:assertj-core:${ext['assertj.version']}"
5658
dependency "org.hdrhistogram:HdrHistogram:${ext['hdrhistogram.version']}"

rsocket-transport-netty/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ plugins {
2424

2525
def os_suffix = ""
2626
if (osdetector.classifier in ["linux-x86_64"] || ["osx-x86_64"] || ["windows-x86_64"]) {
27-
os_suffix = ":" + osdetector.classifier
27+
os_suffix = "::" + osdetector.classifier
2828
}
2929

3030
dependencies {
@@ -41,7 +41,7 @@ dependencies {
4141

4242
testRuntimeOnly 'ch.qos.logback:logback-classic'
4343
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
44-
testRuntimeOnly 'io.netty:netty-tcnative-boringssl-static:2.0.17.Final' + os_suffix
44+
testRuntimeOnly 'io.netty:netty-tcnative-boringssl-static' + os_suffix
4545
}
4646

4747
description = 'Reactor Netty RSocket transport implementations (TCP, Websocket)'

0 commit comments

Comments
 (0)