Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/add-untriaged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
- uses: actions/github-script@v8
with:
script: |
github.rest.issues.addLabels({
Expand Down
15 changes: 8 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ buildscript {
awsCryptoMaterialProvidersVersion = "1.11.0"
dafnyRuntimeVersion = "4.11.0"
smithyDafnyVersion = "0.1.1"
gsonVersion = "2.13.1"
junitJupiterVersion = "5.13.3"
gsonVersion = "2.13.2"
junitJupiterVersion = "5.13.4"
jakartaJsonBindVersion = "3.0.1"
jakartaJsonVersion = "2.0.1"
commonsTextVersion = "1.10.0"
commonsTextVersion = "1.14.0"
yassonVersion = "3.0.4"
parssonVersion = "1.1.7"
swaggerVersion = "2.1.30"
swaggerCoreVersion = "2.2.34"
swaggerVersion = "2.1.34"
swaggerCoreVersion = "2.2.37"
}

repositories {
Expand All @@ -62,7 +62,7 @@ buildscript {

dependencies {
classpath "org.opensearch.gradle:build-tools:${opensearch_version}"
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.4"
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.2.1"
}
}

Expand Down Expand Up @@ -205,7 +205,7 @@ dependencies {
exclude group: 'net.minidev', module: 'json-smart'
}
// needed to use MLIndex class mappings at (test) runtime but must be provided by calling plugins
compileOnly('com.networknt:json-schema-validator:1.4.0') {
compileOnly('com.networknt:json-schema-validator:1.5.9') {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
exclude group: 'com.fasterxml.jackson.dataformat', module: 'jackson-dataformat-yaml'
exclude group: 'org.yml', module: 'snakeyaml'
Expand Down Expand Up @@ -264,6 +264,7 @@ dependencies {
// Some other plugin dependencies that don't use version catalog conflict here
force("com.google.guava:guava:${versions.guava}")
force("org.slf4j:slf4j-api:${versions.slf4j}")
force("com.google.errorprone:error_prone_annotations:${versions.error_prone_annotations}")

if (System.getenv('REMOTE_METADATA_SDK_IMPL') == 'ddb-client') {
// OpenSearch Java client brings in different versions of the below dependencies.
Expand Down
Loading