OpenSearch/plugin/logstash/build.gradle

23 lines
553 B
Groovy

evaluationDependsOn(xpackModule('core'))
apply plugin: 'elasticsearch.esplugin'
esplugin {
name 'x-pack-logstash'
description 'Elasticsearch Expanded Pack Plugin - Logstash'
classname 'org.elasticsearch.xpack.logstash.Logstash'
extendedPlugins = ['x-pack-core']
}
archivesBaseName = 'x-pack-logstash'
dependencies {
compileOnly "org.elasticsearch.plugin:x-pack-core:${version}"
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
}
run {
plugin xpackModule('core')
}
integTest.enabled = false