26 lines
526 B
Groovy
26 lines
526 B
Groovy
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
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'), configuration: 'default')
|
|
}
|
|
|
|
dependencyLicenses {
|
|
ignoreSha 'x-pack-core'
|
|
}
|
|
|
|
//no tests
|
|
tasks.named("test").configure {
|
|
enabled = false
|
|
}
|
|
|
|
|