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
13 lines
315 B
Groovy
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}"
|
|
}
|
|
}
|