Skip to content

Commit 3b53d5d

Browse files
authored
reactor version upgrade (#441)
1 parent 1849d08 commit 3b53d5d

File tree

4 files changed

+12
-38
lines changed

4 files changed

+12
-38
lines changed

build.gradle

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -54,32 +54,6 @@ subprojects {
5454
options.compilerArgs << '-Xlint:all,-overloads,-rawtypes,-unchecked'
5555
}
5656

57-
ext {
58-
// common
59-
jsr305Version = '3.0.2'
60-
reactorVersion = '3.1.0.RELEASE'
61-
nettyVersion = '4.1.15.Final'
62-
reactiveStreamsVersion = '1.0.1'
63-
slf4jVersion = '1.7.25'
64-
// aeron
65-
aeronVersion = '1.4.1'
66-
// netty
67-
reactorNettyVersion = '0.7.0.M2'
68-
// spectator
69-
spectatorVersion = '0.57.1'
70-
hdrHistogramVersion = '2.1.9'
71-
// tck-drivers
72-
jacksonVersion = '2.9.1'
73-
commonsLang3Version = '3.6'
74-
airlineVersion = '0.8'
75-
rxjavaVersion = '2.1.3'
76-
// test
77-
junitVersion = '4.12'
78-
hamcrestVersion = '1.3'
79-
mockitoVersion = '2.10.0'
80-
jmhVersion = '1.19'
81-
}
82-
8357
// custom tasks for creating source/javadoc jars
8458
task sourcesJar(type: Jar, dependsOn: classes) {
8559
classifier = 'sources'
@@ -106,7 +80,7 @@ subprojects {
10680
}
10781

10882
dependencies {
109-
compile "io.projectreactor:reactor-core:3.1.0.RELEASE"
83+
compile "io.projectreactor:reactor-core:3.1.1.RELEASE"
11084
compile "io.netty:netty-buffer:4.1.15.Final"
11185
compile "org.reactivestreams:reactive-streams:1.0.1"
11286
compile "org.slf4j:slf4j-api:1.7.25"
@@ -116,7 +90,7 @@ subprojects {
11690
testCompile "org.mockito:mockito-core:2.10.0"
11791
testCompile "org.hamcrest:hamcrest-library:1.3"
11892
testCompile "org.slf4j:slf4j-log4j12:1.7.25"
119-
testCompile "io.projectreactor:reactor-test:3.1.0.RELEASE"
93+
testCompile "io.projectreactor:reactor-test:3.1.1.RELEASE"
12094
}
12195

12296
publishing {

rsocket-core/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ clean {
6262
}
6363

6464
dependencies {
65-
jmh "org.openjdk.jmh:jmh-core:${jmh.jmhVersion}"
66-
jmh "org.openjdk.jmh:jmh-generator-annprocess:${jmh.jmhVersion}"
65+
jmh "org.openjdk.jmh:jmh-core:1.19"
66+
jmh "org.openjdk.jmh:jmh-generator-annprocess:1.19"
6767

68-
jmhRuntime "org.slf4j:slf4j-nop:$slf4jVersion"
69-
}
68+
jmhRuntime "org.slf4j:slf4j-nop:1.7.25"
69+
}

rsocket-spectator/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
dependencies {
1818
compile project(':rsocket-core')
19-
compile "com.netflix.spectator:spectator-api:$spectatorVersion"
19+
compile "com.netflix.spectator:spectator-api:0.57.1"
2020
compile "org.hdrhistogram:HdrHistogram:2.1.9"
2121

2222
testCompile project(':rsocket-test')

rsocket-transport-netty/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
dependencies {
1818
compile project(':rsocket-core')
19-
compile "io.projectreactor.ipc:reactor-netty:0.7.0.RELEASE"
20-
compile "io.netty:netty-handler:4.1.15.Final"
21-
compile "io.netty:netty-handler-proxy:4.1.15.Final"
22-
compile "io.netty:netty-codec-http:4.1.15.Final"
23-
compile "io.netty:netty-transport-native-epoll:4.1.15.Final"
19+
compile "io.projectreactor.ipc:reactor-netty:0.7.1.RELEASE"
20+
compile "io.netty:netty-handler:4.1.16.Final"
21+
compile "io.netty:netty-handler-proxy:4.1.16.Final"
22+
compile "io.netty:netty-codec-http:4.1.16.Final"
23+
compile "io.netty:netty-transport-native-epoll:4.1.16.Final"
2424

2525
testCompile project(':rsocket-test')
2626
}

0 commit comments

Comments
 (0)