diff --git a/.github/workflows/wrapper.yml b/.github/workflows/wrapper.yml index db8a4115..e9b12515 100644 --- a/.github/workflows/wrapper.yml +++ b/.github/workflows/wrapper.yml @@ -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 diff --git a/CREATE_YOUR_FIRST_EXTENSION.md b/CREATE_YOUR_FIRST_EXTENSION.md index 5fbc210d..41fb7135 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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/ + - Lucene snapshot repository: https://artifacts.opensearch.org/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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/ + https://artifacts.opensearch.org/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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"} + maven { url "https://artifacts.opensearch.org/snapshots/lucene/"} } dependencies { diff --git a/build.gradle b/build.gradle index a0305164..e3a3c2eb 100644 --- a/build.gradle +++ b/build.gradle @@ -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"