mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
2f4dca744f
This change is the x-plugins side of elastic/elasticsearchelastic/elasticsearch#14952. It now requires x-plugins to be checked out as a sibling of elasticsearch called extra-plugin-x-plugins. Original commit: elastic/x-pack-elasticsearch@f69b167407
7 lines
280 B
Groovy
7 lines
280 B
Groovy
File elasticsearchDir = new File(settingsDir, '../../elasticsearch')
|
|
if (elasticsearchDir.exists() == false) {
|
|
throw new GradleException('Elasticsearch must be checked out as a sibling directory of x-plugins')
|
|
}
|
|
|
|
project(':').projectDir = new File(elasticsearchDir, 'buildSrc')
|