16 lines
451 B
Groovy
16 lines
451 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:watcher', configuration: 'runtime')
|
|
testCompile project(path: ':plugins:lang-groovy', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin 'license', project(':x-plugins:license:plugin')
|
|
plugin 'watcher', project(':x-plugins:watcher')
|
|
plugin 'groovy', project(':plugins:lang-groovy')
|
|
systemProperty 'es.script.inline', 'on'
|
|
}
|
|
}
|