2018-01-26 21:48:30 -08:00
|
|
|
evaluationDependsOn(xpackModule('core'))
|
2018-01-22 10:55:03 -05:00
|
|
|
|
2018-01-19 23:30:17 -06:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
|
|
|
name 'x-pack-graph'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Graph'
|
|
|
|
classname 'org.elasticsearch.xpack.graph.Graph'
|
|
|
|
extendedPlugins = ['x-pack-core']
|
|
|
|
}
|
2017-12-08 09:41:32 -07:00
|
|
|
archivesBaseName = 'x-pack-graph'
|
|
|
|
|
|
|
|
dependencies {
|
2018-02-09 11:30:43 -08:00
|
|
|
compileOnly "org.elasticsearch.plugin:x-pack-core:${version}"
|
2018-01-26 21:48:30 -08:00
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2017-12-08 09:41:32 -07:00
|
|
|
}
|
|
|
|
|
2018-01-19 23:30:17 -06:00
|
|
|
run {
|
2018-01-26 21:48:30 -08:00
|
|
|
plugin xpackModule('core')
|
2017-12-08 09:41:32 -07:00
|
|
|
}
|
2018-01-25 01:38:34 -08:00
|
|
|
|
|
|
|
integTest.enabled = false
|