mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-25 01:19:02 +00:00
* Gets build to use elasticsearch-extras Also adds ci script for building repo on CI servers To use this change you need to: 1. Clone elasticsearch: `git@github.com:elastic/elasticsearch.git` 2. create a directory at the same level as elasticsearch called `elasticsearch-extra` 3. Clone this repository into the `elasticsearch-extra` directory 4. Run `gradle build` from the `elasticsearch-extra/prelert-legacy` directory or run `gradle :prelert-legacy:build` from the `elasticsearch directory * Adds USE_SSH option to ci script * iter Original commit: elastic/x-pack-elasticsearch@ea127dfef0
15 lines
330 B
Groovy
15 lines
330 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
numNodes = 3
|
|
distribution = 'zip'
|
|
plugin ':prelert-legacy:elasticsearch'
|
|
}
|
|
}
|