Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 2 additions & 28 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,32 +54,6 @@ subprojects {
options.compilerArgs << '-Xlint:all,-overloads,-rawtypes,-unchecked'
}

ext {
// common
jsr305Version = '3.0.2'
reactorVersion = '3.1.0.RELEASE'
nettyVersion = '4.1.15.Final'
reactiveStreamsVersion = '1.0.1'
slf4jVersion = '1.7.25'
// aeron
aeronVersion = '1.4.1'
// netty
reactorNettyVersion = '0.7.0.M2'
// spectator
spectatorVersion = '0.57.1'
hdrHistogramVersion = '2.1.9'
// tck-drivers
jacksonVersion = '2.9.1'
commonsLang3Version = '3.6'
airlineVersion = '0.8'
rxjavaVersion = '2.1.3'
// test
junitVersion = '4.12'
hamcrestVersion = '1.3'
mockitoVersion = '2.10.0'
jmhVersion = '1.19'
}

// custom tasks for creating source/javadoc jars
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
Expand All @@ -106,7 +80,7 @@ subprojects {
}

dependencies {
compile "io.projectreactor:reactor-core:3.1.0.RELEASE"
compile "io.projectreactor:reactor-core:3.1.1.RELEASE"
compile "io.netty:netty-buffer:4.1.15.Final"
compile "org.reactivestreams:reactive-streams:1.0.1"
compile "org.slf4j:slf4j-api:1.7.25"
Expand All @@ -116,7 +90,7 @@ subprojects {
testCompile "org.mockito:mockito-core:2.10.0"
testCompile "org.hamcrest:hamcrest-library:1.3"
testCompile "org.slf4j:slf4j-log4j12:1.7.25"
testCompile "io.projectreactor:reactor-test:3.1.0.RELEASE"
testCompile "io.projectreactor:reactor-test:3.1.1.RELEASE"
}

publishing {
Expand Down
8 changes: 4 additions & 4 deletions rsocket-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ clean {
}

dependencies {
jmh "org.openjdk.jmh:jmh-core:${jmh.jmhVersion}"
jmh "org.openjdk.jmh:jmh-generator-annprocess:${jmh.jmhVersion}"
jmh "org.openjdk.jmh:jmh-core:1.19"
jmh "org.openjdk.jmh:jmh-generator-annprocess:1.19"

jmhRuntime "org.slf4j:slf4j-nop:$slf4jVersion"
}
jmhRuntime "org.slf4j:slf4j-nop:1.7.25"
}
2 changes: 1 addition & 1 deletion rsocket-spectator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

testCompile project(':rsocket-test')
Expand Down
10 changes: 5 additions & 5 deletions rsocket-transport-netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

dependencies {
compile project(':rsocket-core')
compile "io.projectreactor.ipc:reactor-netty:0.7.0.RELEASE"
compile "io.netty:netty-handler:4.1.15.Final"
compile "io.netty:netty-handler-proxy:4.1.15.Final"
compile "io.netty:netty-codec-http:4.1.15.Final"
compile "io.netty:netty-transport-native-epoll:4.1.15.Final"
compile "io.projectreactor.ipc:reactor-netty:0.7.1.RELEASE"
compile "io.netty:netty-handler:4.1.16.Final"
compile "io.netty:netty-handler-proxy:4.1.16.Final"
compile "io.netty:netty-codec-http:4.1.16.Final"
compile "io.netty:netty-transport-native-epoll:4.1.16.Final"

testCompile project(':rsocket-test')
}