Skip to content

Commit bdaad5c

Browse files
authored
Harmonize reactive-streams version (#119316) (#119322)
We depend on the `reactive-streams` library in a couple of places. This commit extracts the version to the top-level `version.properties` file to make sure we keep these versions in sync.
1 parent 2a20cc2 commit bdaad5c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

build-tools-internal/version.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ commons_lang3 = 3.9
1919
google_oauth_client = 1.34.1
2020
awsv1sdk = 1.12.270
2121
awsv2sdk = 2.28.13
22+
reactive_streams = 1.0.4
2223

2324
antlr4 = 4.13.1
2425
# bouncy castle version for non-fips. fips jars use a different version

modules/repository-azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies {
5555
api "io.projectreactor.netty:reactor-netty-core:${versions.azureReactorNetty}"
5656
api "io.projectreactor.netty:reactor-netty-http:${versions.azureReactorNetty}"
5757
api "io.projectreactor:reactor-core:3.4.38"
58-
api "org.reactivestreams:reactive-streams:1.0.4"
58+
api "org.reactivestreams:reactive-streams:${versions.reactive_streams}"
5959

6060
// Others
6161
api "com.fasterxml.woodstox:woodstox-core:6.7.0"

x-pack/plugin/inference/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ dependencies {
6767
api "software.amazon.awssdk:checksums-spi:${versions.awsv2sdk}"
6868
api "software.amazon.awssdk:checksums:${versions.awsv2sdk}"
6969
api "software.amazon.awssdk:sdk-core:${versions.awsv2sdk}"
70-
api "org.reactivestreams:reactive-streams:1.0.4"
71-
api "org.reactivestreams:reactive-streams-tck:1.0.4"
70+
api "org.reactivestreams:reactive-streams:${versions.reactive_streams}"
71+
api "org.reactivestreams:reactive-streams-tck:${versions.reactive_streams}"
7272
api "software.amazon.awssdk:profiles:${versions.awsv2sdk}"
7373
api "software.amazon.awssdk:retries:${versions.awsv2sdk}"
7474
api "software.amazon.awssdk:auth:${versions.awsv2sdk}"

0 commit comments

Comments
 (0)