From 5062f8de03f29b0f263384647136852ae4d5ecf4 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 13:07:48 -0800 Subject: [PATCH] Fixed lucene snapshot url (#991) (#992) (cherry picked from commit 4fad0de7aa23cef11f79d183f60b84685cd11a03) Signed-off-by: owaiskazi19 Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] --- CREATE_YOUR_FIRST_EXTENSION.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CREATE_YOUR_FIRST_EXTENSION.md b/CREATE_YOUR_FIRST_EXTENSION.md index b16c9b14..fec638f2 100644 --- a/CREATE_YOUR_FIRST_EXTENSION.md +++ b/CREATE_YOUR_FIRST_EXTENSION.md @@ -28,7 +28,7 @@ In your dependency management, set up a dependency on the OpenSearch SDK for Jav At general availability, dependencies will be released to the Central Repository. To use SNAPSHOT versions, add these repositories: - OpenSearch SNAPSHOT repository: https://aws.oss.sonatype.org/content/repositories/snapshots/ - - Lucene snapshot repository: https://artifacts.opensearch.org/snapshots/lucene/ + - Lucene snapshot repository: https://ci.opensearch.org/ci/dbc/snapshots/lucene/ If you use Maven, the following POM entries will work: @@ -42,7 +42,7 @@ If you use Maven, the following POM entries will work: lucene.snapshots Lucene Snapshot Repository - https://artifacts.opensearch.org/snapshots/lucene/ + https://ci.opensearch.org/ci/dbc/snapshots/lucene/ @@ -61,7 +61,7 @@ For Gradle, specify dependencies as follows: repositories { mavenCentral() maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots/" } - maven { url "https://artifacts.opensearch.org/snapshots/lucene/"} + maven { url "https://ci.opensearch.org/ci/dbc/snapshots/lucene/"} } dependencies { diff --git a/build.gradle b/build.gradle index 91d1674f..527d5181 100644 --- a/build.gradle +++ b/build.gradle @@ -156,7 +156,7 @@ repositories { mavenLocal() mavenCentral() maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" } - maven { url "https://artifacts.opensearch.org/snapshots/lucene/"} + maven { url "https://ci.opensearch.org/ci/dbc/snapshots/lucene/"} } dependencies {