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-07-24 16:39:43 -04:00
|
|
|
include 'plugins-cloud-aws'
|
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-10-02 20:20:37 -04:00
|
|
|
|
2010-09-26 12:13:45 -04:00
|
|
|
include 'plugins-lang-groovy'
|
2010-10-02 20:20:37 -04:00
|
|
|
include 'plugins-lang-javascript'
|
2010-10-09 14:59:41 -04:00
|
|
|
include 'plugins-lang-python'
|
2010-09-21 11:32:34 -04:00
|
|
|
|
2010-04-25 16:01:00 -04:00
|
|
|
include 'plugins-transport-memcached'
|
2010-09-03 19:45:37 -04:00
|
|
|
include 'plugins-transport-thrift'
|
2011-02-17 22:00:08 -05:00
|
|
|
include 'plugins-transport-wares'
|
2010-09-21 11:32:34 -04:00
|
|
|
|
2010-09-21 07:35:09 -04:00
|
|
|
include 'plugins-river-twitter'
|
2010-10-03 16:22:45 -04:00
|
|
|
include 'plugins-river-wikipedia'
|
2010-09-21 11:32:34 -04:00
|
|
|
include 'plugins-river-rabbitmq'
|
2010-09-22 20:26:12 -04:00
|
|
|
include 'plugins-river-couchdb'
|
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
|
|
|
}
|