Skip to content

Commit

Permalink
Harmonize reactive-streams version (elastic#119316)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
DaveCTurner authored Dec 27, 2024
1 parent a4d4762 commit 1d58988
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions build-tools-internal/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ commons_lang3 = 3.9
google_oauth_client = 1.34.1
awsv1sdk = 1.12.270
awsv2sdk = 2.28.13
reactive_streams = 1.0.4

antlr4 = 4.13.1
# bouncy castle version for non-fips. fips jars use a different version
Expand Down
2 changes: 1 addition & 1 deletion modules/repository-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ dependencies {
api "io.projectreactor.netty:reactor-netty-core:${versions.azureReactorNetty}"
api "io.projectreactor.netty:reactor-netty-http:${versions.azureReactorNetty}"
api "io.projectreactor:reactor-core:3.4.38"
api "org.reactivestreams:reactive-streams:1.0.4"
api "org.reactivestreams:reactive-streams:${versions.reactive_streams}"

// Others
api "com.fasterxml.woodstox:woodstox-core:6.7.0"
Expand Down
4 changes: 2 additions & 2 deletions x-pack/plugin/inference/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ dependencies {
api "software.amazon.awssdk:checksums-spi:${versions.awsv2sdk}"
api "software.amazon.awssdk:checksums:${versions.awsv2sdk}"
api "software.amazon.awssdk:sdk-core:${versions.awsv2sdk}"
api "org.reactivestreams:reactive-streams:1.0.4"
api "org.reactivestreams:reactive-streams-tck:1.0.4"
api "org.reactivestreams:reactive-streams:${versions.reactive_streams}"
api "org.reactivestreams:reactive-streams-tck:${versions.reactive_streams}"
api "software.amazon.awssdk:profiles:${versions.awsv2sdk}"
api "software.amazon.awssdk:retries:${versions.awsv2sdk}"
api "software.amazon.awssdk:auth:${versions.awsv2sdk}"
Expand Down

0 comments on commit 1d58988

Please sign in to comment.