15 lines
397 B
Groovy
15 lines
397 B
Groovy
|
include 'test-testng'
|
||
|
|
||
|
include 'elasticsearch'
|
||
|
|
||
|
include 'test-integration'
|
||
|
|
||
|
include 'benchmark-micro'
|
||
|
|
||
|
rootProject.name = 'elasticsearch-root'
|
||
|
rootProject.children.each {project ->
|
||
|
String fileBaseName = project.name.replaceAll("\\p{Upper}") { "-${it.toLowerCase()}" }
|
||
|
fileBaseName = fileBaseName.replace('-', '/');
|
||
|
project.projectDir = new File(settingsDir, "modules/$fileBaseName")
|
||
|
}
|