mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 18:35:25 +00:00
Elasticsearch plugins are traditionally using org.elasticsearch.plugin group, clients are using org.elasticsearch.client, so it makes sense to move all sql pieces and deliverables into org.elasticsearch.sql group. Otherwise, users might get really confused about an artifact named `server` in the group `org.elasticsearch`. Original commit: elastic/x-pack-elasticsearch@c3a4042040
12 lines
212 B
Groovy
12 lines
212 B
Groovy
description = 'SQL for Elasticsearch'
|
|
|
|
subprojects {
|
|
group = 'org.elasticsearch.sql'
|
|
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
dependencies {
|
|
testCompile "org.elasticsearch.test:framework:${version}"
|
|
}
|
|
}
|