mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 14:05:27 +00:00
rename data frame transform plugin to transform: - rename plugin data-frame to transform - change all package names from o.e.*.dataframe.* to o.e.*.transform.* - necessary changes to fix loading/testing
18 lines
664 B
Groovy
18 lines
664 B
Groovy
apply plugin: 'elasticsearch.testclusters'
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: xpackModule('core'), configuration: 'default')
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
testCompile project(path: xpackModule('transform'), configuration: 'runtime')
|
|
testCompile project(':client:rest-high-level')
|
|
}
|
|
|
|
testClusters.integTest {
|
|
testDistribution = 'DEFAULT'
|
|
setting 'xpack.security.enabled', 'true'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
user username: "x_pack_rest_user", password: "x-pack-test-password"
|
|
}
|