mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
0e8ef06947
This should make it easier to run stuff for just sql. Original commit: elastic/x-pack-elasticsearch@d68465edb0
14 lines
304 B
Groovy
14 lines
304 B
Groovy
description = 'SQL for Elasticsearch'
|
|
|
|
import org.gradle.plugins.ide.eclipse.model.*;
|
|
|
|
subprojects {
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
sourceSets.test.resources.srcDirs = ["src/test/resources", "src/test/java"]
|
|
|
|
dependencies {
|
|
testCompile "org.elasticsearch.test:framework:${version}"
|
|
}
|
|
}
|