Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rdegnan committed Sep 18, 2018
1 parent 62f5483 commit e084853
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ allprojects {
apply plugin: 'idea'

ext {
rsocketRpcVersion = '0.2.0'
protobufVersion = '3.6.0'
proteusVersion = '0.9.0'
springBootDependenciesVersion = '2.0.2.RELEASE'
proteusVersion = '0.9.4'
protobufVersion = '3.6.1'
rsocketRpcVersion = '0.2.2'
springBootDependenciesVersion = '2.0.5.RELEASE'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion demos/springboot-demo/client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '2.0.2.RELEASE'
id 'org.springframework.boot' version '2.0.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import org.springframework.stereotype.Component;
import reactor.core.publisher.Flux;

import java.time.Duration;
import java.util.concurrent.ThreadLocalRandom;

@Component
Expand All @@ -43,7 +44,7 @@ public void run(String... args) throws Exception {

// Generate stream of random strings
Flux<VowelCountRequest> requests =
Flux.range(1, 100)
Flux.interval(Duration.ofMillis(100))
.map(
cnt ->
VowelCountRequest.newBuilder()
Expand Down
2 changes: 1 addition & 1 deletion demos/springboot-demo/isvowel-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '2.0.2.RELEASE'
id 'org.springframework.boot' version '2.0.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}

Expand Down
2 changes: 1 addition & 1 deletion demos/springboot-demo/vowelcount-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '2.0.2.RELEASE'
id 'org.springframework.boot' version '2.0.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=io.netifi.proteus
version=0.4.2
version=0.4.3

0 comments on commit e084853

Please sign in to comment.