From 4fad0de7aa23cef11f79d183f60b84685cd11a03 Mon Sep 17 00:00:00 2001 From: Owais Kazi Date: Tue, 13 Feb 2024 11:49:31 -0800 Subject: [PATCH] Fixed lucene snapshot url (#991) Signed-off-by: owaiskazi19 --- 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 41fb7135..8ab0bce4 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 dd65fc5d..77e4e7b2 100644 --- a/build.gradle +++ b/build.gradle @@ -157,7 +157,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 {