From 7ce7172c673b68cee5c86f95d0807bd48f02b6e1 Mon Sep 17 00:00:00 2001 From: Sayali Gaikawad Date: Wed, 27 May 2026 17:55:48 -0700 Subject: [PATCH] Add ci.opensearch.org maven2 mirror to avoid throttling (observability) 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 21d187a9e..23c8a7a32 100644 --- a/build.gradle +++ b/build.gradle @@ -28,6 +28,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/" } } @@ -160,6 +161,7 @@ configurations.all { 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 2ae600d5a..8da3bd60d 100644 --- a/settings.gradle +++ b/settings.gradle @@ -3,4 +3,12 @@ * SPDX-License-Identifier: Apache-2.0 */ +pluginManagement { + repositories { + maven { url "https://ci.opensearch.org/maven2/" } + gradlePluginPortal() + mavenCentral() + } +} + rootProject.name = 'opensearch-observability'