Skip to content

Commit

Permalink
Fixed lucene snapshot url (#991) (#992)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4fad0de)

Signed-off-by: owaiskazi19 <owaiskazi19@gmail.com>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 8c133f1 commit 5062f8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CREATE_YOUR_FIRST_EXTENSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

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

Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5062f8d

Please sign in to comment.