File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ subprojects {
32
32
ext[' logback.version' ] = ' 1.2.3'
33
33
ext[' findbugs.version' ] = ' 3.0.2'
34
34
ext[' netty.version' ] = ' 4.1.29.Final'
35
+ ext[' netty-boringssl.version' ] = ' 2.0.18.Final'
35
36
ext[' hdrhistogram.version' ] = ' 2.1.10'
36
37
ext[' jctool.version' ] = ' 2.1.2'
37
38
ext[' mockito.version' ] = ' 2.23.0'
@@ -51,6 +52,7 @@ subprojects {
51
52
dependency " ch.qos.logback:logback-classic:${ ext['logback.version']} "
52
53
dependency " com.google.code.findbugs:jsr305:${ ext['findbugs.version']} "
53
54
dependency " io.netty:netty-buffer:${ ext['netty.version']} "
55
+ dependency " io.netty:netty-tcnative-boringssl-static:${ ext['netty-boringssl.version']} "
54
56
dependency " io.micrometer:micrometer-core:${ ext['micrometer.version']} "
55
57
dependency " org.assertj:assertj-core:${ ext['assertj.version']} "
56
58
dependency " org.hdrhistogram:HdrHistogram:${ ext['hdrhistogram.version']} "
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ plugins {
24
24
25
25
def os_suffix = " "
26
26
if (osdetector. classifier in [" linux-x86_64" ] || [" osx-x86_64" ] || [" windows-x86_64" ]) {
27
- os_suffix = " :" + osdetector. classifier
27
+ os_suffix = " :: " + osdetector. classifier
28
28
}
29
29
30
30
dependencies {
@@ -41,7 +41,7 @@ dependencies {
41
41
42
42
testRuntimeOnly ' ch.qos.logback:logback-classic'
43
43
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
45
45
}
46
46
47
47
description = ' Reactor Netty RSocket transport implementations (TCP, Websocket)'
You can’t perform that action at this time.
0 commit comments