Skip to content

Commit adb23b4

Browse files
Merge branch 'main' into whitesource-remediate/major-guava-monorepo
Signed-off-by: Sarat Vemulapalli <[email protected]>
2 parents e8bedec + a548bcb commit adb23b4

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/wrapper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- uses: gradle/wrapper-validation-action@v1
16+
- uses: gradle/wrapper-validation-action@v2

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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/
31+
- Lucene snapshot repository: https://artifacts.opensearch.org/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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/</url>
45+
<url>https://artifacts.opensearch.org/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://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"}
64+
maven { url "https://artifacts.opensearch.org/snapshots/lucene/"}
6565
}
6666
6767
dependencies {

build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -157,16 +157,17 @@ repositories {
157157
mavenLocal()
158158
mavenCentral()
159159
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
160-
maven { url "https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"}
160+
maven { url "https://artifacts.opensearch.org/snapshots/lucene/"}
161161
}
162162

163163
dependencies {
164164

165165
def opensearchVersion = "${opensearch_version}"
166-
def log4jVersion = "2.21.1"
166+
def log4jVersion = "2.22.1"
167167
def nettyVersion = "4.1.101.Final"
168-
def jacksonDatabindVersion = "2.15.3"
168+
def jacksonDatabindVersion = "2.16.1"
169169
def guavaVersion = "33.0.0-jre"
170+
def guavaVersion = "32.1.3-jre"
170171
def guiceVersion = "7.0.0"
171172
def junit4Version = "4.13.2"
172173
def junit5Version = "5.10.1"

0 commit comments

Comments
 (0)