mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
cf29dea577
Too big. Sorry. Some good things though: 1. Share some code between CLI and JDBC. Probably a good thing at this point, better as we go on, I think. 2. Add round trip tests for all of proto. 3. Remove the `data` member from `QueryInitResponse` and `QueryPageResponse` so we response serialization is consistent with everything else. Original commit: elastic/x-pack-elasticsearch@c6940a32ed
18 lines
536 B
Groovy
18 lines
536 B
Groovy
description = 'Request and response objects shared by the jdbc driver and ' +
|
|
'its backend in :sql:server'
|
|
|
|
dependencies {
|
|
compile project(':x-pack-elasticsearch:sql:shared-proto')
|
|
testCompile project(':x-pack-elasticsearch:sql:test-utils')
|
|
}
|
|
|
|
forbiddenApisMain {
|
|
// does not depend on core, so only jdk and http signatures should be checked
|
|
signaturesURLs = [this.class.getResource('/forbidden/jdk-signatures.txt')]
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /shared-proto.*/, to: 'elasticsearch'
|
|
ignoreSha 'shared-proto'
|
|
}
|