32 lines
935 B
Groovy
32 lines
935 B
Groovy
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* The OpenSearch Contributors require contributions made to
|
|
* this file be licensed under the Apache-2.0 license or a
|
|
* compatible open source license.
|
|
*
|
|
*/
|
|
|
|
apply plugin: 'opensearch.build'
|
|
|
|
archivesBaseName = 'opensearch-upgrade-cli'
|
|
|
|
dependencies {
|
|
compileOnly project(":server")
|
|
compileOnly project(":libs:opensearch-cli")
|
|
implementation "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
|
implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson}"
|
|
implementation "com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}"
|
|
testImplementation project(":test:framework")
|
|
testImplementation 'com.google.jimfs:jimfs:1.2'
|
|
testRuntimeOnly 'com.google.guava:guava:31.1-jre'
|
|
}
|
|
|
|
tasks.named("dependencyLicenses").configure {
|
|
mapping from: /jackson-.*/, to: 'jackson'
|
|
}
|
|
|
|
test {
|
|
systemProperty 'tests.security.manager', 'false'
|
|
}
|