mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 23:15:04 +00:00
This commit does three things: * Removes all Copyright/license headers for the build.gradle files under x-pack. (implicit Apache license) * Removes evaluationDependsOn(xpackModule('core')) from build.gradle files under x-pack * Removes a place holder test in favor of disabling the test task (in the async plugin)
26 lines
551 B
Groovy
26 lines
551 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
|
|
}
|
|
integTest.enabled = false
|
|
|