elasticsearch/x-pack/plugin/async/build.gradle

26 lines
535 B
Groovy

apply plugin: 'elasticsearch.internal-es-plugin'
esplugin {
name 'x-pack-async'
description 'A module which handles common async operations'
classname 'org.elasticsearch.xpack.async.AsyncResultsIndexPlugin'
extendedPlugins = ['x-pack-core']
}
archivesBaseName = 'x-pack-async'
dependencies {
compileOnly project(":server")
compileOnly project(path: xpackModule('core'))
}
tasks.named("dependencyLicenses").configure {
ignoreSha 'x-pack-core'
}
//no tests
tasks.named("test").configure {
enabled = false
}