changes for ES modularization
Original commit: elastic/x-pack-elasticsearch@1e130f1693
This commit is contained in:
parent
83c2f1b3c4
commit
afb8b2a890
|
@ -10,7 +10,7 @@ dependencies {
|
|||
testCompile project(path: ':x-plugins:license:plugin', configuration: 'runtime')
|
||||
testCompile project(path: ':x-plugins:shield', configuration: 'runtime')
|
||||
testCompile project(path: ':x-plugins:watcher', configuration: 'testArtifacts')
|
||||
testCompile project(path: ':plugins:lang-groovy', configuration: 'runtime')
|
||||
testCompile project(path: ':modules:lang-groovy', configuration: 'runtime')
|
||||
}
|
||||
|
||||
// TODO: remove this, its because gradle does not bring in plugin-metadata for lang-groovy
|
||||
|
|
|
@ -2,14 +2,15 @@ apply plugin: 'elasticsearch.rest-test'
|
|||
|
||||
dependencies {
|
||||
testCompile project(path: ':x-plugins:watcher', configuration: 'runtime')
|
||||
testCompile project(path: ':plugins:lang-groovy', configuration: 'runtime')
|
||||
testCompile project(path: ':modules: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')
|
||||
// TODO: fix this once modules are not allowed to be installed with bin/plugin...
|
||||
plugin 'groovy', project(':modules:lang-groovy')
|
||||
systemProperty 'es.script.inline', 'on'
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue