Skip to content

Commit

Permalink
pull available dependencies from upstream to remove dev overhead
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Ho <dxho@amazon.com>
  • Loading branch information
derek-ho committed Aug 30, 2023
1 parent 4345041 commit d19b6a0
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ buildscript {
}
common_utils_version = System.getProperty("common_utils.version", opensearch_build)
kotlin_version = System.getProperty("kotlin.version", "1.8.21")
jackson_version = "2.14.1"
}

repositories {
Expand Down Expand Up @@ -125,9 +124,9 @@ configurations.all {
resolutionStrategy {
force "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
force "org.jetbrains.kotlin:kotlin-stdlib-common:${kotlin_version}"
force "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jackson_version}"
force "org.mockito:mockito-core:4.6.1"
force "org.yaml:snakeyaml:2.0"
force "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${versions.jackson}"
force "org.mockito:mockito-core:${versions.mockito}"
force "org.yaml:snakeyaml:${versions.snakeyaml}"
}
}

Expand Down Expand Up @@ -172,8 +171,8 @@ dependencies {
// json-base, jackson-databind, jackson-annotations are only used by json-flattener.
// see https://github.com/opensearch-project/OpenSearch/issues/5395.
implementation group: 'com.github.wnameless.json', name: 'json-base', version: '2.2.1'
implementation "com.fasterxml.jackson.core:jackson-databind:${jackson_version}"
implementation "com.fasterxml.jackson.core:jackson-annotations:${jackson_version}"
implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson}"
implementation "com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}"
testImplementation(
'org.assertj:assertj-core:3.16.1',
'org.junit.jupiter:junit-jupiter-api:5.6.2'
Expand All @@ -182,8 +181,8 @@ dependencies {
testImplementation "org.opensearch.test:framework:${opensearch_version}"
testImplementation "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
testImplementation "org.mockito:mockito-core:4.3.1"
testImplementation "org.mockito:mockito-junit-jupiter:4.3.1"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
testImplementation "org.mockito:mockito-junit-jupiter:${versions.mockito}"
testImplementation "com.google.code.gson:gson:2.8.9"

ktlint "com.pinterest:ktlint:0.45.0"
Expand Down

0 comments on commit d19b6a0

Please sign in to comment.