2018-01-27 00:48:30 -05:00
|
|
|
evaluationDependsOn(xpackModule('core'))
|
2018-01-22 10:55:03 -05:00
|
|
|
|
2018-01-20 00:30:17 -05:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
2019-11-14 06:01:23 -05:00
|
|
|
name 'x-pack-logstash'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Logstash'
|
|
|
|
classname 'org.elasticsearch.xpack.logstash.Logstash'
|
|
|
|
extendedPlugins = ['x-pack-core']
|
2018-01-20 00:30:17 -05:00
|
|
|
}
|
|
|
|
archivesBaseName = 'x-pack-logstash'
|
|
|
|
|
|
|
|
dependencies {
|
2019-11-14 06:01:23 -05:00
|
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2018-01-20 00:30:17 -05:00
|
|
|
}
|
|
|
|
|
2018-01-25 04:38:34 -05:00
|
|
|
integTest.enabled = false
|