2019-08-26 16:19:55 -04:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
2019-11-14 06:01:23 -05:00
|
|
|
name 'x-pack-analytics'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Analytics'
|
|
|
|
classname 'org.elasticsearch.xpack.analytics.AnalyticsPlugin'
|
|
|
|
extendedPlugins = ['x-pack-core']
|
2019-08-26 16:19:55 -04:00
|
|
|
}
|
2019-08-29 12:45:39 -04:00
|
|
|
archivesBaseName = 'x-pack-analytics'
|
2019-08-26 16:19:55 -04:00
|
|
|
|
|
|
|
compileJava.options.compilerArgs << "-Xlint:-rawtypes"
|
|
|
|
compileTestJava.options.compilerArgs << "-Xlint:-rawtypes"
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2019-11-14 06:01:23 -05:00
|
|
|
compileOnly project(":server")
|
|
|
|
|
|
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2020-04-06 11:36:47 -04:00
|
|
|
|
2020-06-30 09:57:41 -04:00
|
|
|
api 'org.apache.commons:commons-math3:3.2'
|
2019-08-26 16:19:55 -04:00
|
|
|
}
|
|
|
|
|