2018-01-18 11:15:02 -05:00
|
|
|
|
|
|
|
/*
|
2018-06-28 08:56:16 -04:00
|
|
|
* This project contains XContent protocol classes shared between server and http client
|
2018-01-18 11:15:02 -05:00
|
|
|
*/
|
|
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
|
|
|
|
description = 'Request and response objects shared by the cli, jdbc ' +
|
|
|
|
'and the Elasticsearch plugin'
|
2017-12-23 01:42:13 -05:00
|
|
|
|
|
|
|
dependencies {
|
2019-06-04 16:50:23 -04:00
|
|
|
compile (project(':libs:elasticsearch-core')) {
|
2018-01-18 11:15:02 -05:00
|
|
|
transitive = false
|
|
|
|
}
|
2019-06-04 16:50:23 -04:00
|
|
|
compile (project(':libs:elasticsearch-x-content')) {
|
2018-04-02 17:58:48 -04:00
|
|
|
transitive = false
|
|
|
|
}
|
2018-01-18 11:15:02 -05:00
|
|
|
runtime "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
|
|
|
|
2019-06-04 16:50:23 -04:00
|
|
|
testCompile project(":test:framework")
|
2017-12-23 01:42:13 -05:00
|
|
|
}
|
|
|
|
|
2018-03-12 05:53:27 -04:00
|
|
|
forbiddenApisMain {
|
|
|
|
//sql does not depend on server, so only jdk signatures should be checked
|
2018-08-22 02:05:22 -04:00
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2018-03-12 05:53:27 -04:00
|
|
|
}
|
|
|
|
|
2017-12-23 01:42:13 -05:00
|
|
|
dependencyLicenses {
|
2018-01-18 11:15:02 -05:00
|
|
|
mapping from: /elasticsearch-core.*/, to: 'elasticsearch'
|
|
|
|
mapping from: /jackson-.*/, to: 'jackson'
|
|
|
|
ignoreSha 'elasticsearch-core'
|
2017-12-23 01:42:13 -05:00
|
|
|
}
|