diff --git a/CHANGELOG.md b/CHANGELOG.md index 87290fbef9..699e75c137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Maintenance * Replace commons-lang with org.apache.commons:commons-lang3 [#2863](https://github.com/opensearch-project/k-NN/pull/2863) * Bump OpenSearch-Protobufs to 0.13.0 [#2833](https://github.com/opensearch-project/k-NN/pull/2833) +* Bump 'com.google.errorprone:error_prone_annotations' to 2.41.0 [#2885](https://github.com/opensearch-project/k-NN/pull/2885 ### Bug Fixes * Use queryVector length if present in MDC check [#2867](https://github.com/opensearch-project/k-NN/pull/2867) diff --git a/build.gradle b/build.gradle index 12a4df42e8..11d23acb2e 100644 --- a/build.gradle +++ b/build.gradle @@ -252,6 +252,12 @@ configurations { zipArchive } +configurations.all { + resolutionStrategy { + force 'com.google.errorprone:error_prone_annotations:2.41.0' + } +} + publishing { repositories { maven {