mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-03 09:29:11 +00:00
This commit removes xpack from being a meta-plugin-as-a-module. It also fixes a couple tests which were missing task dependencies, which failed once the gradle execution order changed.
17 lines
522 B
Groovy
17 lines
522 B
Groovy
import org.elasticsearch.gradle.plugin.MetaPluginBuildPlugin
|
|
import org.elasticsearch.gradle.plugin.MetaPluginPropertiesExtension
|
|
import org.elasticsearch.gradle.plugin.PluginBuildPlugin
|
|
import org.elasticsearch.gradle.plugin.PluginPropertiesExtension
|
|
|
|
apply plugin: 'elasticsearch.vagrantsupport'
|
|
apply plugin: 'elasticsearch.vagrant'
|
|
|
|
esvagrant {
|
|
inheritTestUtils true
|
|
}
|
|
|
|
dependencies {
|
|
// Inherit Bats test utils from :qa:vagrant project
|
|
packaging project(path: ':qa:vagrant', configuration: 'packaging')
|
|
}
|