2018-01-22 10:55:03 -05:00
|
|
|
evaluationDependsOn(':x-pack-elasticsearch:plugin:core')
|
|
|
|
|
2018-01-20 00:30:17 -05:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
|
|
|
name 'x-pack-graph'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Graph'
|
|
|
|
classname 'org.elasticsearch.xpack.graph.Graph'
|
2018-01-21 11:00:51 -05:00
|
|
|
hasNativeController false
|
2018-01-20 00:30:17 -05:00
|
|
|
requiresKeystore true
|
|
|
|
extendedPlugins = ['x-pack-core']
|
|
|
|
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
|
|
|
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
|
|
|
}
|
2017-12-08 11:41:32 -05:00
|
|
|
archivesBaseName = 'x-pack-graph'
|
|
|
|
|
|
|
|
licenseHeaders.enabled = false
|
|
|
|
|
2018-01-20 00:30:17 -05:00
|
|
|
integTest.enabled = false
|
|
|
|
|
2017-12-08 11:41:32 -05:00
|
|
|
dependencies {
|
|
|
|
provided "org.elasticsearch:elasticsearch:${version}"
|
|
|
|
|
2018-01-20 00:30:17 -05:00
|
|
|
provided "org.elasticsearch.plugin:x-pack-core:${version}"
|
|
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin:core', configuration: 'testArtifacts')
|
2017-12-08 11:41:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencyLicenses {
|
2017-12-08 16:42:50 -05:00
|
|
|
ignoreSha 'x-pack-core'
|
2017-12-08 11:41:32 -05:00
|
|
|
}
|
|
|
|
|
2018-01-20 00:30:17 -05:00
|
|
|
run {
|
|
|
|
plugin ':x-pack-elasticsearch:plugin:core'
|
2017-12-08 11:41:32 -05:00
|
|
|
}
|