8 lines
423 B
Groovy
8 lines
423 B
Groovy
File extrasDir = new File(settingsDir, '..').getCanonicalFile()
|
|
if (extrasDir.name.endsWith('-extra') == false) {
|
|
throw new GradleException("x-pack-elasticsearch must be checked out under an elasticsearch-extra directory, found ${extrasDir.name}")
|
|
}
|
|
File elasticsearchDir = new File(extrasDir.parentFile, extrasDir.name[0..-7])
|
|
project(':').projectDir = elasticsearchDir
|
|
apply from: "${elasticsearchDir}/settings.gradle"
|