21 lines
647 B
Groovy
21 lines
647 B
Groovy
apply plugin: 'elasticsearch.internal-es-plugin'
|
|
apply plugin: 'elasticsearch.internal-cluster-test'
|
|
esplugin {
|
|
name 'transform'
|
|
description 'A plugin to transform data'
|
|
classname 'org.elasticsearch.xpack.transform.Transform'
|
|
extendedPlugins = ['x-pack-core']
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(":server")
|
|
|
|
compileOnly project(path: xpackModule('core'))
|
|
testImplementation(testArtifact(project(xpackModule('core'))))
|
|
testImplementation project(path: xpackModule('analytics'))
|
|
testImplementation project(path: ':modules:aggs-matrix-stats')
|
|
testImplementation project(path: xpackModule('spatial'))
|
|
}
|
|
|
|
addQaCheckDependencies()
|