2018-01-27 00:48:30 -05:00
|
|
|
evaluationDependsOn(xpackModule('core'))
|
2018-01-22 10:55:03 -05:00
|
|
|
|
2018-01-20 00:30:17 -05:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
|
|
|
name 'x-pack-graph'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Graph'
|
|
|
|
classname 'org.elasticsearch.xpack.graph.Graph'
|
|
|
|
extendedPlugins = ['x-pack-core']
|
|
|
|
}
|
2017-12-08 11:41:32 -05:00
|
|
|
archivesBaseName = 'x-pack-graph'
|
|
|
|
|
|
|
|
dependencies {
|
2018-08-21 20:03:28 -04:00
|
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2017-12-08 11:41:32 -05:00
|
|
|
}
|
|
|
|
|
2018-10-30 15:14:33 -04:00
|
|
|
// add all sub-projects of the qa sub-project
|
|
|
|
gradle.projectsEvaluated {
|
|
|
|
project.subprojects
|
|
|
|
.find { it.path == project.path + ":qa" }
|
|
|
|
.subprojects
|
|
|
|
.findAll { it.path.startsWith(project.path + ":qa") }
|
|
|
|
.each { check.dependsOn it.check }
|
|
|
|
}
|
|
|
|
|
2018-01-25 04:38:34 -05:00
|
|
|
integTest.enabled = false
|