From 30f96343a9c1eb78e2f8d9be64418a0a051e5815 Mon Sep 17 00:00:00 2001 From: Divya Madala Date: Fri, 26 Jun 2026 13:55:30 -0700 Subject: [PATCH] Add CI mirror to plugin and dependency repositories to avoid Maven Central throttling Signed-off-by: Divya Madala --- build.gradle | 2 ++ settings.gradle | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/build.gradle b/build.gradle index 7f4052ceb..e07121257 100644 --- a/build.gradle +++ b/build.gradle @@ -42,6 +42,7 @@ buildscript { repositories { mavenLocal() maven { url = "https://ci.opensearch.org/ci/dbc/snapshots/maven/" } + maven { url = "https://ci.opensearch.org/maven2/" } mavenCentral() maven { url = "https://plugins.gradle.org/m2/" } maven { url = 'https://jitpack.io' } @@ -171,6 +172,7 @@ java { repositories { mavenLocal() maven { url = "https://ci.opensearch.org/ci/dbc/snapshots/maven/" } + maven { url = "https://ci.opensearch.org/maven2/" } mavenCentral() maven { url "https://plugins.gradle.org/m2/" } } diff --git a/settings.gradle b/settings.gradle index ea45f08b8..517e70d2b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,9 @@ +pluginManagement { + repositories { + maven { url "https://ci.opensearch.org/maven2/" } + gradlePluginPortal() + mavenCentral() + } +} + rootProject.name = 'opensearch-flow-framework'