Skip to content

Commit

Permalink
RSocket 1.0.0, Spring Boot 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider committed May 15, 2020
1 parent 617abf4 commit ca09066
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
6 changes: 3 additions & 3 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ repositories {
}

dependencies {
api 'io.rsocket:rsocket-core:1.0.0-RC7'
api 'io.rsocket:rsocket-core:1.0.0'
api 'io.micrometer:micrometer-registry-prometheus:latest.release'
implementation 'org.xerial.snappy:snappy-java:latest.release'

testImplementation 'ch.qos.logback:logback-classic:1.2.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.+'
testImplementation 'io.rsocket:rsocket-transport-netty:1.0.0-RC7'
testImplementation 'io.rsocket:rsocket-transport-local:1.0.0-RC7'
testImplementation 'io.rsocket:rsocket-transport-netty:1.0.0'
testImplementation 'io.rsocket:rsocket-transport-local:1.0.0'
testImplementation 'org.assertj:assertj-core:latest.release'
}

Expand Down
7 changes: 3 additions & 4 deletions proxy/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'com.bmuschko.docker-spring-boot-application' version '5.0.0'
id 'nebula.override' version '3.0.2'
}
Expand All @@ -26,9 +26,8 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'io.micrometer:micrometer-registry-prometheus'

implementation 'io.rsocket:rsocket-micrometer:1.0.0-RC7'
implementation 'io.rsocket:rsocket-transport-netty:1.0.0-RC7'
implementation 'io.rsocket:rsocket-core:1.0.0-RC7'
implementation 'io.rsocket:rsocket-micrometer:1.0.0'
implementation 'io.rsocket:rsocket-transport-netty:1.0.0'

implementation 'org.xerial.snappy:snappy-java:latest.release'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
Expand Down
9 changes: 4 additions & 5 deletions starter-spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,18 @@ repositories {

dependencyManagement {
imports {
mavenBom 'org.springframework.boot:spring-boot-dependencies:2.2.6.RELEASE'
mavenBom 'org.springframework.boot:spring-boot-dependencies:2.3.0.RELEASE'
}
}

dependencies {
api 'io.micrometer:micrometer-registry-prometheus:latest.release'
implementation 'io.micrometer:micrometer-core:latest.release'
api 'io.micrometer:micrometer-registry-prometheus'

implementation 'org.springframework.boot:spring-boot-actuator-autoconfigure'
implementation 'org.springframework.boot:spring-boot-autoconfigure'
implementation project(':prometheus-rsocket-client')

implementation 'io.rsocket:rsocket-core:1.0.0-RC7'
implementation 'io.rsocket:rsocket-transport-netty:1.0.0-RC7'
implementation 'io.rsocket:rsocket-transport-netty:1.0.0'

annotationProcessor 'org.springframework.boot:spring-boot-autoconfigure-processor'

Expand Down

0 comments on commit ca09066

Please sign in to comment.