mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
87d3d16c5a
Upgrade JLine to 3.10.0 Switch to using JLine granular jars instead of the uber-one Remove Jansi dependency (due to errors in closing streams) Pin JNA dependency to our own artifact Fix #40239 (cherry picked from commit 9afa65fa80111f3b68c13373c7b6db13c11dde31)
32 lines
858 B
Groovy
32 lines
858 B
Groovy
|
|
/*
|
|
* This project contains XContent protocol classes shared between server and http client
|
|
*/
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
description = 'Request and response objects shared by the cli, jdbc ' +
|
|
'and the Elasticsearch plugin'
|
|
|
|
dependencies {
|
|
compile (project(':libs:core')) {
|
|
transitive = false
|
|
}
|
|
compile (project(':libs:x-content')) {
|
|
transitive = false
|
|
}
|
|
runtime "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
|
|
|
testCompile "org.elasticsearch.test:framework:${version}"
|
|
}
|
|
|
|
forbiddenApisMain {
|
|
//sql does not depend on server, so only jdk signatures should be checked
|
|
replaceSignatureFiles 'jdk-signatures'
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /elasticsearch-core.*/, to: 'elasticsearch'
|
|
mapping from: /jackson-.*/, to: 'jackson'
|
|
ignoreSha 'elasticsearch-core'
|
|
}
|