Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed lucene snapshot url #991

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -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 {
Expand Down
Loading