2016-12-14 18:02:07 -05:00
|
|
|
String dirName = rootProject.projectDir.name
|
|
|
|
rootProject.name = dirName
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2015-11-05 01:28:57 -05:00
|
|
|
List projects = [
|
2016-05-07 01:22:38 -04:00
|
|
|
'build-tools',
|
2015-10-29 14:40:19 -04:00
|
|
|
'rest-api-spec',
|
2016-04-29 10:42:03 -04:00
|
|
|
'docs',
|
2016-06-22 13:40:01 -04:00
|
|
|
'client:rest',
|
2016-12-29 12:16:04 -05:00
|
|
|
'client:rest-high-level',
|
2016-06-22 13:40:01 -04:00
|
|
|
'client:sniffer',
|
2016-07-18 09:42:24 -04:00
|
|
|
'client:transport',
|
2016-06-22 13:40:01 -04:00
|
|
|
'client:test',
|
2016-08-26 03:05:47 -04:00
|
|
|
'client:client-benchmark-noop-api-plugin',
|
2016-07-26 05:01:22 -04:00
|
|
|
'client:benchmark',
|
2016-06-15 10:48:02 -04:00
|
|
|
'benchmarks',
|
2015-12-03 17:52:51 -05:00
|
|
|
'distribution:integ-test-zip',
|
2015-10-29 14:40:19 -04:00
|
|
|
'distribution:zip',
|
|
|
|
'distribution:tar',
|
|
|
|
'distribution:deb',
|
|
|
|
'distribution:rpm',
|
2017-12-06 18:03:13 -05:00
|
|
|
'distribution:tools:launchers',
|
2017-04-21 12:25:58 -04:00
|
|
|
'distribution:tools:plugin-cli',
|
2018-01-11 13:30:43 -05:00
|
|
|
'server',
|
|
|
|
'server:cli',
|
2015-12-17 19:57:39 -05:00
|
|
|
'test:framework',
|
2015-12-15 23:14:37 -05:00
|
|
|
'test:fixtures:example-fixture',
|
2015-12-20 16:00:37 -05:00
|
|
|
'test:fixtures:hdfs-fixture',
|
2017-05-10 17:42:20 -04:00
|
|
|
'test:fixtures:krb5kdc-fixture',
|
2017-05-11 10:06:20 -04:00
|
|
|
'test:fixtures:old-elasticsearch',
|
2018-01-17 22:54:43 -05:00
|
|
|
'test:logger-usage'
|
2015-10-29 14:40:19 -04:00
|
|
|
]
|
|
|
|
|
2018-01-17 22:54:43 -05:00
|
|
|
/**
|
|
|
|
* Iterates over sub directories, looking for build.gradle, and adds a project if found
|
|
|
|
* for that dir with the given path prefix. Note that this requires each level
|
|
|
|
* of the dir hierarchy to have a build.gradle. Otherwise we would have to iterate
|
|
|
|
* all files/directories in the source tree to find all projects.
|
|
|
|
*/
|
|
|
|
void addSubProjects(String path, File dir, List<String> projects, List<String> branches) {
|
|
|
|
if (dir.isDirectory() == false) return;
|
|
|
|
if (dir.name == 'buildSrc') return;
|
|
|
|
if (new File(dir, 'build.gradle').exists() == false) return;
|
|
|
|
if (findProject(dir) != null) return;
|
|
|
|
|
|
|
|
final String projectName = "${path}:${dir.name}"
|
|
|
|
include projectName
|
|
|
|
|
|
|
|
if (dir.name == 'bwc-snapshot-dummy-projects') {
|
|
|
|
for (final String branch : branches) {
|
|
|
|
final String snapshotProjectName = "${projectName}:bwc-snapshot-${branch}"
|
|
|
|
projects.add(snapshotProjectName)
|
|
|
|
include snapshotProjectName
|
|
|
|
project("${snapshotProjectName}").projectDir = dir
|
|
|
|
}
|
|
|
|
// TODO do we want to assert that there's nothing else in the bwc directory?
|
|
|
|
} else {
|
|
|
|
if (path.isEmpty() || path.startsWith(':example-plugins')) {
|
|
|
|
project(projectName).projectDir = dir
|
|
|
|
}
|
|
|
|
for (File subdir : dir.listFiles()) {
|
|
|
|
addSubProjects(projectName, subdir, projects, branches)
|
|
|
|
}
|
|
|
|
}
|
2018-01-03 14:12:43 -05:00
|
|
|
}
|
|
|
|
|
2018-01-17 22:54:43 -05:00
|
|
|
// include example plugins first, so adding plugin dirs below won't muck with :example-plugins
|
|
|
|
File examplePluginsDir = new File(rootProject.projectDir, 'plugins/examples')
|
|
|
|
for (File example : examplePluginsDir.listFiles()) {
|
|
|
|
if (example.isDirectory() == false) continue;
|
|
|
|
if (example.name.startsWith('build') || example.name.startsWith('.')) continue;
|
|
|
|
addSubProjects(':example-plugins', example, projects, [])
|
|
|
|
}
|
|
|
|
project(':example-plugins').projectDir = new File(rootProject.projectDir, 'plugins/examples')
|
|
|
|
|
|
|
|
addSubProjects('', new File(rootProject.projectDir, 'libs'), projects, [])
|
|
|
|
addSubProjects('', new File(rootProject.projectDir, 'modules'), projects, [])
|
|
|
|
addSubProjects('', new File(rootProject.projectDir, 'plugins'), projects, [])
|
|
|
|
addSubProjects('', new File(rootProject.projectDir, 'qa'), projects, [])
|
|
|
|
|
2017-11-21 03:26:45 -05:00
|
|
|
/* Create projects for building BWC snapshot distributions from the heads of other branches */
|
|
|
|
final List<String> branches = ['5.6', '6.0', '6.1', '6.x']
|
|
|
|
for (final String branch : branches) {
|
|
|
|
projects.add("distribution:bwc-snapshot-${branch}".toString())
|
|
|
|
}
|
|
|
|
|
2015-11-05 01:28:57 -05:00
|
|
|
boolean isEclipse = System.getProperty("eclipse.launcher") != null || gradle.startParameter.taskNames.contains('eclipse') || gradle.startParameter.taskNames.contains('cleanEclipse')
|
|
|
|
if (isEclipse) {
|
|
|
|
// eclipse cannot handle an intermediate dependency between main and test, so we must create separate projects
|
2018-01-11 13:30:43 -05:00
|
|
|
// for server-src and server-tests
|
|
|
|
projects << 'server-tests'
|
2018-01-16 04:50:07 -05:00
|
|
|
projects << 'libs:elasticsearch-core-tests'
|
2017-12-21 09:34:15 -05:00
|
|
|
projects << 'libs:elasticsearch-nio-tests'
|
2015-11-05 01:28:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
include projects.toArray(new String[0])
|
|
|
|
|
2016-05-07 01:22:38 -04:00
|
|
|
project(':build-tools').projectDir = new File(rootProject.projectDir, 'buildSrc')
|
|
|
|
|
2017-11-21 03:26:45 -05:00
|
|
|
/* The BWC snapshot projects share the same build directory and build file,
|
|
|
|
* but apply to different backwards compatibility branches. */
|
|
|
|
for (final String branch : branches) {
|
|
|
|
project(":distribution:bwc-snapshot-${branch}").projectDir = new File(rootProject.projectDir, 'distribution/bwc')
|
|
|
|
}
|
2017-05-29 10:22:32 -04:00
|
|
|
|
2015-11-05 01:28:57 -05:00
|
|
|
if (isEclipse) {
|
2018-01-11 13:30:43 -05:00
|
|
|
project(":server").projectDir = new File(rootProject.projectDir, 'server/src/main')
|
|
|
|
project(":server").buildFileName = 'eclipse-build.gradle'
|
|
|
|
project(":server-tests").projectDir = new File(rootProject.projectDir, 'server/src/test')
|
|
|
|
project(":server-tests").buildFileName = 'eclipse-build.gradle'
|
2018-01-16 04:50:07 -05:00
|
|
|
project(":libs:elasticsearch-core").projectDir = new File(rootProject.projectDir, 'libs/elasticsearch-core/src/main')
|
|
|
|
project(":libs:elasticsearch-core").buildFileName = 'eclipse-build.gradle'
|
|
|
|
project(":libs:elasticsearch-core-tests").projectDir = new File(rootProject.projectDir, 'libs/elasticsearch-core/src/test')
|
|
|
|
project(":libs:elasticsearch-core-tests").buildFileName = 'eclipse-build.gradle'
|
2017-12-21 09:34:15 -05:00
|
|
|
project(":libs:elasticsearch-nio").projectDir = new File(rootProject.projectDir, 'libs/elasticsearch-nio/src/main')
|
|
|
|
project(":libs:elasticsearch-nio").buildFileName = 'eclipse-build.gradle'
|
|
|
|
project(":libs:elasticsearch-nio-tests").projectDir = new File(rootProject.projectDir, 'libs/elasticsearch-nio/src/test')
|
|
|
|
project(":libs:elasticsearch-nio-tests").buildFileName = 'eclipse-build.gradle'
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
|
2015-11-23 17:44:37 -05:00
|
|
|
// look for extra plugins for elasticsearch
|
2016-12-14 18:02:07 -05:00
|
|
|
File extraProjects = new File(rootProject.projectDir.parentFile, "${dirName}-extra")
|
|
|
|
if (extraProjects.exists()) {
|
|
|
|
for (File extraProjectDir : extraProjects.listFiles()) {
|
2017-11-21 03:26:45 -05:00
|
|
|
addSubProjects('', extraProjectDir, projects, branches)
|
2015-11-23 17:44:37 -05:00
|
|
|
}
|
2015-11-20 14:58:50 -05:00
|
|
|
}
|
2017-12-20 17:29:16 -05:00
|
|
|
|