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']
}
base {
  archivesName = '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
}


