Skip to content

update dependencies #443

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
*/

plugins {
id 'com.gradle.build-scan' version '1.9' // declare before any other plugin
id 'com.gradle.build-scan' version '1.10.1' // declare before any other plugin

id 'com.github.sherter.google-java-format' version '0.6'
id 'com.github.johnrengelman.shadow' version '2.0.1' apply false
id 'me.champeau.gradle.jmh' version '0.4.4' apply false
id 'io.morethan.jmhreport' version '0.6.2.1' apply false
id 'io.morethan.jmhreport' version '0.7.0' apply false

id 'com.jfrog.artifactory' version '4.5.2'
id 'com.jfrog.bintray' version '1.7.3'
id 'com.jfrog.artifactory' version '4.5.4'
id 'com.jfrog.bintray' version '1.8.0'
}

repositories {
Expand All @@ -35,7 +35,7 @@ description = 'RSocket: stream oriented messaging passing with Reactive Stream s
buildScan { licenseAgreementUrl = 'https://gradle.com/terms-of-service'; licenseAgree = 'yes' }

googleJavaFormat {
toolVersion = '1.4'
toolVersion = '1.5'
}

subprojects {
Expand Down Expand Up @@ -81,13 +81,13 @@ subprojects {

dependencies {
compile "io.projectreactor:reactor-core:3.1.1.RELEASE"
compile "io.netty:netty-buffer:4.1.15.Final"
compile "io.netty:netty-buffer:4.1.16.Final"
compile "org.reactivestreams:reactive-streams:1.0.1"
compile "org.slf4j:slf4j-api:1.7.25"
compile "com.google.code.findbugs:jsr305:3.0.2"

testCompile "junit:junit:4.12"
testCompile "org.mockito:mockito-core:2.10.0"
testCompile "org.mockito:mockito-core:2.11.0"
testCompile "org.hamcrest:hamcrest-library:1.3"
testCompile "org.slf4j:slf4j-log4j12:1.7.25"
testCompile "io.projectreactor:reactor-test:3.1.1.RELEASE"
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-all.zip
2 changes: 1 addition & 1 deletion rsocket-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jmh {
duplicateClassesStrategy = DuplicatesStrategy.WARN
zip64 = true

jvmArgs = ['-XX:+UnlockCommercialFeatures', '-XX:+FlightRecorder']
// jvmArgs = ['-XX:+UnlockCommercialFeatures', '-XX:+FlightRecorder']
// NOTE: uncomment to add specific options
// jvmArgsAppend = ['-XX:+UseG1GC', '-Xms4g', '-Xmx4g']
profilers = ['gc']
Expand Down
4 changes: 2 additions & 2 deletions rsocket-spectator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

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

testCompile project(':rsocket-test')
}
6 changes: 3 additions & 3 deletions rsocket-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
dependencies {
compile project(':rsocket-core')
compile "junit:junit:4.12"
compile "org.mockito:mockito-core:2.10.0"
compile "org.mockito:mockito-core:2.11.0"
compile "org.hamcrest:hamcrest-library:1.3"
compile "org.hdrhistogram:HdrHistogram:2.1.9"
compile "io.projectreactor:reactor-test:3.1.0.RELEASE"
compile "org.hdrhistogram:HdrHistogram:2.1.10"
compile "io.projectreactor:reactor-test:3.1.1.RELEASE"
}
2 changes: 1 addition & 1 deletion rsocket-transport-aeron/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

dependencies {
compile project(':rsocket-core')
compile "io.aeron:aeron-all:1.4.1"
compile "io.aeron:aeron-all:1.5.2"

testCompile project(':rsocket-test')
}