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')
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2018-01-20 00:30:17 -05:00
|
|
|
}
|
|
|
|
|