Migrates QA files
Original commit: elastic/x-pack-elasticsearch@ac651f51d4
This commit is contained in:
parent
1b2381d355
commit
e761b76765
|
@ -1,14 +0,0 @@
|
|||
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'
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
apply plugin: 'elasticsearch.standalone-rest-test'
|
||||
apply plugin: 'elasticsearch.rest-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
||||
}
|
||||
|
||||
integTest {
|
||||
cluster {
|
||||
setting 'xpack.security.enabled', 'false'
|
||||
setting 'xpack.ml.enabled', 'true'
|
||||
numNodes = 3
|
||||
distribution = 'zip'
|
||||
plugin ':x-pack:elasticsearch'
|
||||
}
|
||||
}
|
|
@ -2,14 +2,15 @@ apply plugin: 'elasticsearch.standalone-rest-test'
|
|||
apply plugin: 'elasticsearch.rest-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
||||
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
||||
}
|
||||
|
||||
integTest {
|
||||
cluster {
|
||||
setting 'xpack.security.enabled', 'false'
|
||||
setting 'xpack.ml.enabled', 'false'
|
||||
numNodes = 1
|
||||
distribution = 'zip'
|
||||
plugin ':prelert-legacy:elasticsearch'
|
||||
plugin ':x-pack:elasticsearch'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
apply plugin: 'elasticsearch.standalone-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
||||
}
|
||||
|
|
@ -2,14 +2,16 @@ apply plugin: 'elasticsearch.standalone-rest-test'
|
|||
apply plugin: 'elasticsearch.rest-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
||||
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
||||
testCompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.6'
|
||||
}
|
||||
|
||||
integTest {
|
||||
cluster {
|
||||
setting 'xpack.security.enabled', 'false'
|
||||
setting 'xpack.ml.enabled', 'true'
|
||||
setting 'script.inline', 'true'
|
||||
distribution = 'zip'
|
||||
plugin ':prelert-legacy:elasticsearch'
|
||||
plugin ':x-pack:elasticsearch'
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
apply plugin: 'elasticsearch.standalone-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
||||
}
|
||||
|
Loading…
Reference in New Issue