From 295c40d4b5a6aac74633e3017090df5faa4b5db0 Mon Sep 17 00:00:00 2001 From: Sayali Gaikawad Date: Wed, 27 May 2026 17:56:07 -0700 Subject: [PATCH] Add ci.opensearch.org maven2 mirror to avoid throttling (flow-framework) Signed-off-by: Sayali Gaikawad --- build.gradle | 2 ++ settings.gradle | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/build.gradle b/build.gradle index 41e724c9f..20fdcd623 100644 --- a/build.gradle +++ b/build.gradle @@ -55,6 +55,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' } @@ -186,6 +187,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'