28 lines
746 B
Groovy
28 lines
746 B
Groovy
evaluationDependsOn(xpackModule('core'))
|
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
apply plugin: 'elasticsearch.internal-cluster-test'
|
|
|
|
esplugin {
|
|
name 'search-business-rules'
|
|
description 'A plugin for applying business rules to search result rankings'
|
|
classname 'org.elasticsearch.xpack.searchbusinessrules.SearchBusinessRules'
|
|
extendedPlugins = ['x-pack-core']
|
|
}
|
|
archivesBaseName = 'x-pack-searchbusinessrules'
|
|
|
|
|
|
integTest.enabled = false
|
|
|
|
dependencies {
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
|
testImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
testImplementation project(":test:framework")
|
|
}
|
|
|
|
// copied from CCR
|
|
dependencyLicenses {
|
|
ignoreSha 'x-pack-core'
|
|
}
|
|
|