diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f484a157c84f..5e20967309d51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Removed ### Fixed - Fix mapping char_filter when mapping a hashtag ([#7591](https://github.com/opensearch-project/OpenSearch/pull/7591)) +- Force nebula plugins to use latest org.bouncycastle:* artifacts ([#8233](https://github.com/opensearch-project/OpenSearch/pull/8233)) ### Security diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index f0e45d11ede0e..be4e0f6a46ee3 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -118,6 +118,10 @@ dependencies { api 'org.apache.maven:maven-model:3.6.2' api 'com.networknt:json-schema-validator:1.0.36' api "com.fasterxml.jackson.core:jackson-databind:${props.getProperty('jackson_databind')}" + api "org.bouncycastle:bcprov-jdk15on:${props.getProperty('bouncycastle')}" + api "org.bouncycastle:bcpkix-jdk15on:${props.getProperty('bouncycastle')}" + api "org.bouncycastle:bcpg-jdk15on:${props.getProperty('bouncycastle')}" + api "org.bouncycastle:bcutil-jdk15on:${props.getProperty('bouncycastle')}" testFixturesApi "junit:junit:${props.getProperty('junit')}" testFixturesApi "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${props.getProperty('randomizedrunner')}"