mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
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
14 lines
393 B
Groovy
14 lines
393 B
Groovy
description = 'Request and response objects shared by the cli and jdbc.'
|
|
|
|
dependencies {
|
|
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')]
|
|
}
|
|
|
|
// Tested in cli-proto and jdbc-proto
|
|
test.enabled = false
|