Skip to content

Commit

Permalink
Merge branch 'main' into whitesource-remediate/major-guava-monorepo
Browse files Browse the repository at this point in the history
Signed-off-by: Sarat Vemulapalli <vemulapallisarat@gmail.com>
  • Loading branch information
saratvemulapalli committed Feb 1, 2024
2 parents e8bedec + a548bcb commit adb23b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
- uses: gradle/wrapper-validation-action@v2
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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/
- Lucene snapshot repository: https://artifacts.opensearch.org/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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/</url>
<url>https://artifacts.opensearch.org/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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"}
maven { url "https://artifacts.opensearch.org/snapshots/lucene/"}
}
dependencies {
Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -157,16 +157,17 @@ repositories {
mavenLocal()
mavenCentral()
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"}
maven { url "https://artifacts.opensearch.org/snapshots/lucene/"}
}

dependencies {

def opensearchVersion = "${opensearch_version}"
def log4jVersion = "2.21.1"
def log4jVersion = "2.22.1"
def nettyVersion = "4.1.101.Final"
def jacksonDatabindVersion = "2.15.3"
def jacksonDatabindVersion = "2.16.1"
def guavaVersion = "33.0.0-jre"
def guavaVersion = "32.1.3-jre"
def guiceVersion = "7.0.0"
def junit4Version = "4.13.2"
def junit5Version = "5.10.1"
Expand Down

0 comments on commit adb23b4

Please sign in to comment.