2010-02-08 08:30:06 -05:00
|
|
|
include 'test-testng'
|
|
|
|
|
2010-06-15 09:51:38 -04:00
|
|
|
include 'jarjar'
|
|
|
|
|
2010-02-08 08:30:06 -05:00
|
|
|
include 'elasticsearch'
|
|
|
|
|
|
|
|
include 'test-integration'
|
|
|
|
|
|
|
|
include 'benchmark-micro'
|
|
|
|
|
2010-05-01 18:28:28 -04:00
|
|
|
include 'plugins-cloud'
|
2010-05-23 01:17:52 -04:00
|
|
|
include 'plugins-hadoop'
|
2010-04-27 16:54:30 -04:00
|
|
|
include 'plugins-analysis-icu'
|
2010-04-25 16:01:00 -04:00
|
|
|
include 'plugins-mapper-attachments'
|
2010-04-25 15:20:18 -04:00
|
|
|
include 'plugins-client-groovy'
|
2010-04-25 16:01:00 -04:00
|
|
|
include 'plugins-transport-memcached'
|
2010-03-27 16:43:59 -04:00
|
|
|
|
2010-02-08 08:30:06 -05:00
|
|
|
rootProject.name = 'elasticsearch-root'
|
|
|
|
rootProject.children.each {project ->
|
|
|
|
String fileBaseName = project.name.replaceAll("\\p{Upper}") { "-${it.toLowerCase()}" }
|
|
|
|
fileBaseName = fileBaseName.replace('-', '/');
|
2010-03-27 16:43:59 -04:00
|
|
|
if (fileBaseName.startsWith("plugins")) {
|
|
|
|
project.projectDir = new File(settingsDir, "$fileBaseName")
|
|
|
|
} else {
|
|
|
|
project.projectDir = new File(settingsDir, "modules/$fileBaseName")
|
|
|
|
}
|
2010-02-08 08:30:06 -05:00
|
|
|
}
|