OpenSearch/sql/build.gradle
Nik Everett cf29dea577 Huge protocol refactor
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
2017-07-12 17:32:13 -04:00

13 lines
315 B
Groovy

description = 'SQL for Elasticsearch'
subprojects {
apply plugin: 'elasticsearch.build'
// NOCOMMIT this is abnormal enough it is worth removing
sourceSets.test.resources.srcDirs = ["src/test/resources", "src/test/java"]
dependencies {
testCompile "org.elasticsearch.test:framework:${version}"
}
}