Skip to content

Commit 4596eb6

Browse files
committed
Fixed lucene snapshot url
Signed-off-by: owaiskazi19 <[email protected]>
1 parent f5124e8 commit 4596eb6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CREATE_YOUR_FIRST_EXTENSION.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In your dependency management, set up a dependency on the OpenSearch SDK for Jav
2828

2929
At general availability, dependencies will be released to the Central Repository. To use SNAPSHOT versions, add these repositories:
3030
- OpenSearch SNAPSHOT repository: https://aws.oss.sonatype.org/content/repositories/snapshots/
31-
- Lucene snapshot repository: https://artifacts.opensearch.org/snapshots/lucene/
31+
- Lucene snapshot repository: https://ci.opensearch.org/ci/dbc/snapshots/lucene/
3232

3333
If you use Maven, the following POM entries will work:
3434

@@ -42,7 +42,7 @@ If you use Maven, the following POM entries will work:
4242
<repository>
4343
<id>lucene.snapshots</id>
4444
<name>Lucene Snapshot Repository</name>
45-
<url>https://artifacts.opensearch.org/snapshots/lucene/</url>
45+
<url>https://ci.opensearch.org/ci/dbc/snapshots/lucene/</url>
4646
</repository>
4747
</repositories>
4848

@@ -61,7 +61,7 @@ For Gradle, specify dependencies as follows:
6161
repositories {
6262
mavenCentral()
6363
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots/" }
64-
maven { url "https://artifacts.opensearch.org/snapshots/lucene/"}
64+
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/lucene/"}
6565
}
6666
6767
dependencies {

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ repositories {
157157
mavenLocal()
158158
mavenCentral()
159159
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
160-
maven { url "https://artifacts.opensearch.org/snapshots/lucene/"}
160+
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/lucene/"}
161161
}
162162

163163
dependencies {

0 commit comments

Comments
 (0)