Skip to content
Open
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
4 changes: 4 additions & 0 deletions common/reactive-grpc-benchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-inprocess</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion demos/backpressure-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<properties>
<rxjava.version>2.1.10</rxjava.version>
<reactive.grpc.version>1.0.0</reactive.grpc.version>
<grpc.contrib.version>0.8.0</grpc.contrib.version>
<grpc.contrib.version>0.8.1</grpc.contrib.version>
<rxjavafx.version>2.2.2</rxjavafx.version>
<grpc.version>1.23.0</grpc.version>
<protoc.version>3.9.0</protoc.version>
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<module>reactor/reactor-grpc-tck</module>
<module>reactor/reactor-grpc-test</module>
<module>reactor/reactor-grpc-test-32</module>
<module>common/reactive-grpc-benchmarks</module>
<module>common/reactive-grpc-benchmarks</module>
</modules>

<properties>
Expand All @@ -71,13 +71,13 @@

<!-- Dependency Versions -->
<reactive.streams.version>1.0.4</reactive.streams.version>
<grpc.version>1.54.0</grpc.version>
<protoc.version>3.22.2</protoc.version> <!-- Same version as grpc-proto -->
<grpc.version>1.71.0</grpc.version>
<protoc.version>4.30.0</protoc.version> <!-- Same version as grpc-proto -->
<jprotoc.version>1.2.2</jprotoc.version>

<rxjava.version>2.2.21</rxjava.version>
<reactor.version>3.5.4</reactor.version>
<rx3java.version>3.1.6</rx3java.version>
<reactor.version>3.7.3</reactor.version>
<rx3java.version>3.1.10</rx3java.version>

<!-- Test Dependency Versions -->
<grpc.contrib.version>0.8.1</grpc.contrib.version>
Expand Down Expand Up @@ -180,7 +180,7 @@
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-context</artifactId>
<artifactId>grpc-inprocess</artifactId>
<version>${grpc.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
5 changes: 5 additions & 0 deletions reactor/reactor-grpc-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@
<artifactId>grpc-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-inprocess</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion reactor/reactor-grpc-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-context</artifactId>
<artifactId>grpc-inprocess</artifactId>
<version>1.71.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
5 changes: 5 additions & 0 deletions rx-java/rxgrpc-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@
<artifactId>grpc-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-inprocess</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion rx-java/rxgrpc-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-context</artifactId>
<artifactId>grpc-inprocess</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
5 changes: 5 additions & 0 deletions rx3-java/rx3grpc-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
<artifactId>grpc-protobuf</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-inprocess</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams-tck</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion rx3-java/rx3grpc-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-context</artifactId>
<artifactId>grpc-inprocess</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down