2015-11-25 13:29:00 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Messy tests that depend on groovy directly. Fix these!
|
|
|
|
* https://github.com/elastic/x-plugins/issues/724
|
|
|
|
*/
|
|
|
|
|
2015-12-08 19:52:22 -08:00
|
|
|
apply plugin: 'elasticsearch.messy-test'
|
2015-11-25 13:29:00 -05:00
|
|
|
|
|
|
|
dependencies {
|
2015-12-01 14:16:29 -05:00
|
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'testArtifacts')
|
2015-12-03 15:17:02 -08:00
|
|
|
testCompile project(path: ':modules:lang-groovy', configuration: 'runtime')
|
2015-12-10 08:47:55 -05:00
|
|
|
// some tests depend on both groovy and mustache! this is really bad!
|
|
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
2015-11-25 13:29:00 -05:00
|
|
|
}
|