2015-10-29 14:40:19 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
|
|
|
|
2016-03-18 20:22:25 -04:00
|
|
|
import com.bmuschko.gradle.nexus.NexusPlugin
|
2016-04-15 11:13:12 -04:00
|
|
|
import org.eclipse.jgit.lib.Repository
|
|
|
|
import org.eclipse.jgit.lib.RepositoryBuilder
|
2015-10-31 02:39:35 -04:00
|
|
|
import org.gradle.plugins.ide.eclipse.model.SourceFolder
|
2016-04-28 10:02:11 -04:00
|
|
|
import org.apache.tools.ant.taskdefs.condition.Os
|
2015-10-29 14:40:19 -04:00
|
|
|
|
|
|
|
// common maven publishing configuration
|
|
|
|
subprojects {
|
2016-03-17 15:21:31 -04:00
|
|
|
group = 'org.elasticsearch'
|
|
|
|
version = org.elasticsearch.gradle.VersionProperties.elasticsearch
|
|
|
|
|
2016-05-05 20:53:01 -04:00
|
|
|
// we only use maven publish to add tasks for pom generation
|
|
|
|
plugins.withType(MavenPublishPlugin).whenPluginAdded {
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
// add license information to generated poms
|
|
|
|
all {
|
|
|
|
pom.withXml { XmlProvider xml ->
|
|
|
|
Node node = xml.asNode()
|
|
|
|
node.appendNode('inceptionYear', '2009')
|
|
|
|
|
|
|
|
Node license = node.appendNode('licenses').appendNode('license')
|
|
|
|
license.appendNode('name', 'The Apache Software License, Version 2.0')
|
|
|
|
license.appendNode('url', 'http://www.apache.org/licenses/LICENSE-2.0.txt')
|
|
|
|
license.appendNode('distribution', 'repo')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-18 20:22:25 -04:00
|
|
|
plugins.withType(NexusPlugin).whenPluginAdded {
|
|
|
|
modifyPom {
|
|
|
|
project {
|
|
|
|
url 'https://github.com/elastic/elasticsearch'
|
|
|
|
inceptionYear '2009'
|
2015-11-10 02:34:22 -05:00
|
|
|
|
2016-03-18 20:22:25 -04:00
|
|
|
scm {
|
|
|
|
url 'https://github.com/elastic/elasticsearch'
|
|
|
|
connection 'scm:https://elastic@github.com/elastic/elasticsearch'
|
|
|
|
developerConnection 'scm:git://github.com/elastic/elasticsearch.git'
|
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2016-03-18 20:22:25 -04:00
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name 'The Apache Software License, Version 2.0'
|
|
|
|
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
|
|
distribution 'repo'
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-18 20:22:25 -04:00
|
|
|
}
|
|
|
|
extraArchive {
|
|
|
|
javadoc = true
|
|
|
|
tests = false
|
|
|
|
}
|
2016-04-15 11:13:12 -04:00
|
|
|
nexus {
|
|
|
|
String buildSnapshot = System.getProperty('build.snapshot', 'true')
|
|
|
|
if (buildSnapshot == 'false') {
|
2016-04-15 11:35:05 -04:00
|
|
|
Repository repo = new RepositoryBuilder().findGitDir(new File('.')).build()
|
|
|
|
String shortHash = repo.resolve('HEAD')?.name?.substring(0,7)
|
2016-04-15 11:13:12 -04:00
|
|
|
repositoryUrl = project.hasProperty('build.repository') ? project.property('build.repository') : "file://${System.getenv('HOME')}/elasticsearch-releases/${version}-${shortHash}/"
|
|
|
|
}
|
|
|
|
}
|
2016-03-18 20:22:25 -04:00
|
|
|
// we have our own username/password prompts so that they only happen once
|
2016-04-15 11:13:12 -04:00
|
|
|
// TODO: add gpg signing prompts, which is tricky, as the buildDeb/buildRpm tasks are executed before this code block
|
2016-03-18 20:22:25 -04:00
|
|
|
project.gradle.taskGraph.whenReady { taskGraph ->
|
|
|
|
if (taskGraph.allTasks.any { it.name == 'uploadArchives' }) {
|
|
|
|
Console console = System.console()
|
2016-04-15 11:13:12 -04:00
|
|
|
// no need for username/password on local deploy
|
|
|
|
if (project.nexus.repositoryUrl.startsWith('file://')) {
|
2016-03-18 20:22:25 -04:00
|
|
|
project.rootProject.allprojects.each {
|
2016-04-15 11:13:12 -04:00
|
|
|
it.ext.nexusUsername = 'foo'
|
|
|
|
it.ext.nexusPassword = 'bar'
|
2016-03-15 22:10:14 -04:00
|
|
|
}
|
2016-04-15 11:13:12 -04:00
|
|
|
} else {
|
|
|
|
if (project.hasProperty('nexusUsername') == false) {
|
|
|
|
String nexusUsername = console.readLine('\nNexus username: ')
|
|
|
|
project.rootProject.allprojects.each {
|
|
|
|
it.ext.nexusUsername = nexusUsername
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (project.hasProperty('nexusPassword') == false) {
|
|
|
|
String nexusPassword = new String(console.readPassword('\nNexus password: '))
|
|
|
|
project.rootProject.allprojects.each {
|
|
|
|
it.ext.nexusPassword = nexusPassword
|
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
// injecting groovy property variables into all projects
|
|
|
|
project.ext {
|
2016-02-04 18:44:30 -05:00
|
|
|
// for ide hacks...
|
2015-11-05 01:28:57 -05:00
|
|
|
isEclipse = System.getProperty("eclipse.launcher") != null || gradle.startParameter.taskNames.contains('eclipse') || gradle.startParameter.taskNames.contains('cleanEclipse')
|
2016-02-04 18:44:30 -05:00
|
|
|
isIdea = System.getProperty("idea.active") != null || gradle.startParameter.taskNames.contains('idea') || gradle.startParameter.taskNames.contains('cleanIdea')
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
2015-11-15 04:43:13 -05:00
|
|
|
project.afterEvaluate {
|
|
|
|
// include license and notice in jars
|
2015-10-29 14:40:19 -04:00
|
|
|
tasks.withType(Jar) {
|
|
|
|
into('META-INF') {
|
|
|
|
from project.rootProject.rootDir
|
2015-11-25 19:21:38 -05:00
|
|
|
include 'LICENSE.txt'
|
|
|
|
include 'NOTICE.txt'
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
2015-11-15 04:43:13 -05:00
|
|
|
// ignore missing javadocs
|
|
|
|
tasks.withType(Javadoc) { Javadoc javadoc ->
|
2015-11-19 14:06:47 -05:00
|
|
|
// the -quiet here is because of a bug in gradle, in that adding a string option
|
|
|
|
// by itself is not added to the options. By adding quiet, both this option and
|
|
|
|
// the "value" -quiet is added, separated by a space. This is ok since the javadoc
|
|
|
|
// command already adds -quiet, so we are just duplicating it
|
2015-11-20 15:18:30 -05:00
|
|
|
// see https://discuss.gradle.org/t/add-custom-javadoc-option-that-does-not-take-an-argument/5959
|
2015-11-24 18:04:40 -05:00
|
|
|
javadoc.options.encoding='UTF8'
|
2015-11-15 04:43:13 -05:00
|
|
|
javadoc.options.addStringOption('Xdoclint:all,-missing', '-quiet')
|
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
|
2015-11-25 19:21:38 -05:00
|
|
|
/* Sets up the dependencies that we build as part of this project but
|
|
|
|
register as thought they were external to resolve internally. We register
|
|
|
|
them as external dependencies so the build plugin that we use can be used
|
|
|
|
to build elasticsearch plugins outside of the elasticsearch source tree. */
|
2015-11-22 04:12:17 -05:00
|
|
|
ext.projectSubstitutions = [
|
2015-11-20 14:58:50 -05:00
|
|
|
"org.elasticsearch:rest-api-spec:${version}": ':rest-api-spec',
|
|
|
|
"org.elasticsearch:elasticsearch:${version}": ':core',
|
2015-12-17 19:57:39 -05:00
|
|
|
"org.elasticsearch.test:framework:${version}": ':test:framework',
|
2015-12-03 17:52:51 -05:00
|
|
|
"org.elasticsearch.distribution.integ-test-zip:elasticsearch:${version}": ':distribution:integ-test-zip',
|
2015-11-20 14:58:50 -05:00
|
|
|
"org.elasticsearch.distribution.zip:elasticsearch:${version}": ':distribution:zip',
|
2015-11-25 19:21:38 -05:00
|
|
|
"org.elasticsearch.distribution.tar:elasticsearch:${version}": ':distribution:tar',
|
|
|
|
"org.elasticsearch.distribution.rpm:elasticsearch:${version}": ':distribution:rpm',
|
|
|
|
"org.elasticsearch.distribution.deb:elasticsearch:${version}": ':distribution:deb',
|
2016-02-16 18:32:21 -05:00
|
|
|
"org.elasticsearch.test:logger-usage:${version}": ':test:logger-usage',
|
2015-11-22 04:12:17 -05:00
|
|
|
]
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy.dependencySubstitution { DependencySubstitutions subs ->
|
|
|
|
projectSubstitutions.each { k,v ->
|
|
|
|
subs.substitute(subs.module(k)).with(subs.project(v))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure similar tasks in dependent projects run first. The projectsEvaluated here is
|
|
|
|
// important because, while dependencies.all will pickup future dependencies,
|
|
|
|
// it is not necessarily true that the task exists in both projects at the time
|
|
|
|
// the dependency is added.
|
|
|
|
gradle.projectsEvaluated {
|
|
|
|
allprojects {
|
2015-12-17 19:57:39 -05:00
|
|
|
if (project.path == ':test:framework') {
|
|
|
|
// :test:framework:test cannot run before and after :core:test
|
2015-11-22 04:12:17 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
configurations.all {
|
|
|
|
dependencies.all { Dependency dep ->
|
|
|
|
Project upstreamProject = null
|
|
|
|
if (dep instanceof ProjectDependency) {
|
|
|
|
upstreamProject = dep.dependencyProject
|
|
|
|
} else {
|
|
|
|
// gradle doesn't apply substitutions until resolve time, so they won't
|
|
|
|
// show up as a ProjectDependency above
|
|
|
|
String substitution = projectSubstitutions.get("${dep.group}:${dep.name}:${dep.version}")
|
|
|
|
if (substitution != null) {
|
|
|
|
upstreamProject = findProject(substitution)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (upstreamProject != null) {
|
|
|
|
if (project.path == upstreamProject.path) {
|
|
|
|
// TODO: distribution integ tests depend on themselves (!), fix that
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for (String taskName : ['test', 'integTest']) {
|
|
|
|
Task task = project.tasks.findByName(taskName)
|
|
|
|
Task upstreamTask = upstreamProject.tasks.findByName(taskName)
|
|
|
|
if (task != null && upstreamTask != null) {
|
|
|
|
task.mustRunAfter(upstreamTask)
|
|
|
|
}
|
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-31 00:32:16 -04:00
|
|
|
// intellij configuration
|
2015-10-29 14:40:19 -04:00
|
|
|
allprojects {
|
|
|
|
apply plugin: 'idea'
|
2015-12-15 11:32:21 -05:00
|
|
|
|
2016-02-04 18:44:30 -05:00
|
|
|
if (isIdea) {
|
|
|
|
project.buildDir = file('build-idea')
|
|
|
|
}
|
2015-12-15 11:32:21 -05:00
|
|
|
idea {
|
|
|
|
module {
|
|
|
|
inheritOutputDirs = false
|
2016-02-04 18:44:30 -05:00
|
|
|
outputDir = file('build-idea/classes/main')
|
|
|
|
testOutputDir = file('build-idea/classes/test')
|
2015-12-15 11:32:21 -05:00
|
|
|
|
2016-04-14 17:54:52 -04:00
|
|
|
// also ignore other possible build dirs
|
|
|
|
excludeDirs += file('build')
|
|
|
|
excludeDirs += file('build-eclipse')
|
|
|
|
|
2015-12-15 11:32:21 -05:00
|
|
|
iml {
|
|
|
|
// fix so that Gradle idea plugin properly generates support for resource folders
|
|
|
|
// see also https://issues.gradle.org/browse/GRADLE-2975
|
|
|
|
withXml {
|
|
|
|
it.asNode().component.content.sourceFolder.findAll { it.@url == 'file://$MODULE_DIR$/src/main/resources' }.each {
|
|
|
|
it.attributes().remove('isTestSource')
|
|
|
|
it.attributes().put('type', 'java-resource')
|
|
|
|
}
|
|
|
|
it.asNode().component.content.sourceFolder.findAll { it.@url == 'file://$MODULE_DIR$/src/test/resources' }.each {
|
|
|
|
it.attributes().remove('isTestSource')
|
|
|
|
it.attributes().put('type', 'java-test-resource')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-31 00:32:16 -04:00
|
|
|
}
|
|
|
|
|
2015-11-20 14:58:50 -05:00
|
|
|
idea {
|
|
|
|
project {
|
2015-11-22 11:51:34 -05:00
|
|
|
languageLevel = org.elasticsearch.gradle.BuildPlugin.minimumJava.toString()
|
2015-11-20 14:58:50 -05:00
|
|
|
vcs = 'Git'
|
2015-10-31 00:32:16 -04:00
|
|
|
}
|
|
|
|
}
|
2015-11-22 19:07:39 -05:00
|
|
|
// Make sure gradle idea was run before running anything in intellij (including import).
|
|
|
|
File ideaMarker = new File(projectDir, '.local-idea-is-configured')
|
|
|
|
tasks.idea.doLast {
|
|
|
|
ideaMarker.setText('', 'UTF-8')
|
|
|
|
}
|
|
|
|
if (System.getProperty('idea.active') != null && ideaMarker.exists() == false) {
|
|
|
|
throw new GradleException('You must run gradle idea from the root of elasticsearch before importing into IntelliJ')
|
|
|
|
}
|
2015-11-28 19:54:51 -05:00
|
|
|
// add buildSrc itself as a groovy project
|
|
|
|
task buildSrcIdea(type: GradleBuild) {
|
|
|
|
buildFile = 'buildSrc/build.gradle'
|
|
|
|
tasks = ['cleanIdea', 'ideaModule']
|
|
|
|
}
|
|
|
|
tasks.idea.dependsOn(buildSrcIdea)
|
2015-11-22 19:07:39 -05:00
|
|
|
|
2015-10-31 00:32:16 -04:00
|
|
|
|
2015-10-31 02:39:35 -04:00
|
|
|
// eclipse configuration
|
2015-10-31 00:32:16 -04:00
|
|
|
allprojects {
|
2015-10-29 14:40:19 -04:00
|
|
|
apply plugin: 'eclipse'
|
2016-01-28 17:40:29 -05:00
|
|
|
// Name all the non-root projects after their path so that paths get grouped together when imported into eclipse.
|
|
|
|
if (path != ':') {
|
|
|
|
eclipse.project.name = path
|
2016-04-28 10:08:21 -04:00
|
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
2016-04-28 10:02:11 -04:00
|
|
|
eclipse.project.name = eclipse.project.name.replace(':', '_')
|
|
|
|
}
|
2016-01-28 17:40:29 -05:00
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2015-10-31 02:39:35 -04:00
|
|
|
plugins.withType(JavaBasePlugin) {
|
2016-02-04 18:44:30 -05:00
|
|
|
File eclipseBuild = project.file('build-eclipse')
|
|
|
|
eclipse.classpath.defaultOutputDir = eclipseBuild
|
|
|
|
if (isEclipse) {
|
|
|
|
// set this so generated dirs will be relative to eclipse build
|
|
|
|
project.buildDir = eclipseBuild
|
|
|
|
}
|
2015-10-31 02:39:35 -04:00
|
|
|
eclipse.classpath.file.whenMerged { classpath ->
|
|
|
|
// give each source folder a unique corresponding output folder
|
|
|
|
int i = 0;
|
|
|
|
classpath.entries.findAll { it instanceof SourceFolder }.each { folder ->
|
|
|
|
i++;
|
|
|
|
// this is *NOT* a path or a file.
|
2016-02-04 18:44:30 -05:00
|
|
|
folder.output = "build-eclipse/" + i
|
2015-10-31 02:39:35 -04:00
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
2015-11-02 10:44:51 -05:00
|
|
|
task copyEclipseSettings(type: Copy) {
|
|
|
|
// TODO: "package this up" for external builds
|
|
|
|
from new File(project.rootDir, 'buildSrc/src/main/resources/eclipse.settings')
|
|
|
|
into '.settings'
|
|
|
|
}
|
2015-11-02 09:39:14 -05:00
|
|
|
// otherwise .settings is not nuked entirely
|
2015-11-11 22:26:55 -05:00
|
|
|
tasks.cleanEclipse {
|
|
|
|
delete '.settings'
|
|
|
|
}
|
2015-10-30 23:00:05 -04:00
|
|
|
// otherwise the eclipse merging is *super confusing*
|
2015-11-11 22:26:55 -05:00
|
|
|
tasks.eclipse.dependsOn(cleanEclipse, copyEclipseSettings)
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
|
2015-11-07 15:14:00 -05:00
|
|
|
// add buildSrc itself as a groovy project
|
|
|
|
task buildSrcEclipse(type: GradleBuild) {
|
|
|
|
buildFile = 'buildSrc/build.gradle'
|
|
|
|
tasks = ['cleanEclipse', 'eclipse']
|
|
|
|
}
|
|
|
|
tasks.eclipse.dependsOn(buildSrcEclipse)
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2015-11-17 18:37:26 -05:00
|
|
|
// we need to add the same --debug-jvm option as
|
|
|
|
// the real RunTask has, so we can pass it through
|
|
|
|
class Run extends DefaultTask {
|
|
|
|
boolean debug = false
|
|
|
|
|
|
|
|
@org.gradle.api.internal.tasks.options.Option(
|
|
|
|
option = "debug-jvm",
|
|
|
|
description = "Enable debugging configuration, to allow attaching a debugger to elasticsearch."
|
|
|
|
)
|
|
|
|
public void setDebug(boolean enabled) {
|
|
|
|
project.project(':distribution').run.clusterConfig.debug = enabled
|
2015-11-25 19:21:38 -05:00
|
|
|
}
|
2015-11-17 18:37:26 -05:00
|
|
|
}
|
|
|
|
task run(type: Run) {
|
2015-11-16 19:02:44 -05:00
|
|
|
dependsOn ':distribution:run'
|
|
|
|
description = 'Runs elasticsearch in the foreground'
|
|
|
|
group = 'Verification'
|
2015-11-19 01:22:47 -05:00
|
|
|
impliesSubProjects = true
|
2015-11-16 19:02:44 -05:00
|
|
|
}
|