2019-04-03 07:19:29 -04:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
2020-05-12 00:06:04 -04:00
|
|
|
apply plugin: 'elasticsearch.internal-cluster-test'
|
2019-04-03 07:19:29 -04:00
|
|
|
esplugin {
|
2019-11-14 06:01:23 -05:00
|
|
|
name 'x-pack-enrich'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Enrich'
|
|
|
|
classname 'org.elasticsearch.xpack.enrich.EnrichPlugin'
|
|
|
|
extendedPlugins = ['x-pack-core']
|
2019-04-03 07:19:29 -04:00
|
|
|
}
|
|
|
|
archivesBaseName = 'x-pack-enrich'
|
|
|
|
|
|
|
|
dependencies {
|
2019-11-14 06:01:23 -05:00
|
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
|
|
testImplementation project(path: ':modules:ingest-common')
|
|
|
|
testImplementation project(path: ':modules:lang-mustache')
|
|
|
|
testImplementation project(path: ':modules:geo')
|
|
|
|
testImplementation project(path: xpackModule('monitoring'), configuration: 'testArtifacts')
|
2019-04-03 07:19:29 -04:00
|
|
|
}
|
|
|
|
|
2019-04-26 14:19:19 -04:00
|
|
|
// add all sub-projects of the qa sub-project
|
|
|
|
gradle.projectsEvaluated {
|
2019-11-14 06:01:23 -05:00
|
|
|
project.subprojects
|
|
|
|
.find { it.path == project.path + ":qa" }
|
|
|
|
.subprojects
|
|
|
|
.findAll { it.path.startsWith(project.path + ":qa") }
|
|
|
|
.each { check.dependsOn it.check }
|
2019-04-26 14:19:19 -04:00
|
|
|
}
|