2010-02-08 15:30:06 +02:00
|
|
|
include 'test-testng'
|
|
|
|
|
2010-06-15 16:51:38 +03:00
|
|
|
include 'jarjar'
|
|
|
|
|
2010-02-08 15:30:06 +02:00
|
|
|
include 'elasticsearch'
|
|
|
|
|
|
|
|
include 'test-integration'
|
|
|
|
|
|
|
|
include 'benchmark-micro'
|
|
|
|
|
2010-07-24 23:39:43 +03:00
|
|
|
include 'plugins-cloud-aws'
|
2010-05-23 08:17:52 +03:00
|
|
|
include 'plugins-hadoop'
|
2010-04-27 23:54:30 +03:00
|
|
|
include 'plugins-analysis-icu'
|
2010-04-25 23:01:00 +03:00
|
|
|
include 'plugins-mapper-attachments'
|
2010-10-03 02:20:37 +02:00
|
|
|
|
2010-09-26 18:13:45 +02:00
|
|
|
include 'plugins-lang-groovy'
|
2010-10-03 02:20:37 +02:00
|
|
|
include 'plugins-lang-javascript'
|
2010-10-09 20:59:41 +02:00
|
|
|
include 'plugins-lang-python'
|
2010-09-21 17:32:34 +02:00
|
|
|
|
2010-04-25 23:01:00 +03:00
|
|
|
include 'plugins-transport-memcached'
|
2010-09-04 02:45:37 +03:00
|
|
|
include 'plugins-transport-thrift'
|
2010-09-21 17:32:34 +02:00
|
|
|
|
2010-09-21 13:35:09 +02:00
|
|
|
include 'plugins-river-twitter'
|
2010-10-03 22:22:45 +02:00
|
|
|
include 'plugins-river-wikipedia'
|
2010-09-21 17:32:34 +02:00
|
|
|
include 'plugins-river-rabbitmq'
|
2010-09-23 02:26:12 +02:00
|
|
|
include 'plugins-river-couchdb'
|
2010-03-27 23:43:59 +03:00
|
|
|
|
2010-02-08 15:30:06 +02:00
|
|
|
rootProject.name = 'elasticsearch-root'
|
|
|
|
rootProject.children.each {project ->
|
|
|
|
String fileBaseName = project.name.replaceAll("\\p{Upper}") { "-${it.toLowerCase()}" }
|
|
|
|
fileBaseName = fileBaseName.replace('-', '/');
|
2010-03-27 23:43:59 +03:00
|
|
|
if (fileBaseName.startsWith("plugins")) {
|
|
|
|
project.projectDir = new File(settingsDir, "$fileBaseName")
|
|
|
|
} else {
|
|
|
|
project.projectDir = new File(settingsDir, "modules/$fileBaseName")
|
|
|
|
}
|
2010-02-08 15:30:06 +02:00
|
|
|
}
|