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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import com.bmuschko.gradle.nexus.NexusPlugin
|
2015-10-31 02:39:35 -04:00
|
|
|
import org.gradle.plugins.ide.eclipse.model.SourceFolder
|
2015-10-29 14:40:19 -04:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// common maven publishing configuration
|
|
|
|
subprojects {
|
2015-11-10 02:34:22 -05:00
|
|
|
group = 'org.elasticsearch'
|
|
|
|
version = org.elasticsearch.gradle.VersionProperties.elasticsearch
|
|
|
|
|
2015-10-29 14:40:19 -04:00
|
|
|
plugins.withType(NexusPlugin).whenPluginAdded {
|
|
|
|
modifyPom {
|
|
|
|
project {
|
|
|
|
url 'https://github.com/elastic/elasticsearch'
|
|
|
|
inceptionYear '2009'
|
|
|
|
|
|
|
|
scm {
|
|
|
|
url 'https://github.com/elastic/elasticsearch'
|
|
|
|
connection 'scm:https://elastic@github.com/elastic/elasticsearch'
|
|
|
|
developerConnection 'scm:git://github.com/elastic/elasticsearch.git'
|
|
|
|
}
|
|
|
|
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name 'The Apache Software License, Version 2.0'
|
|
|
|
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
|
|
distribution 'repo'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
extraArchive {
|
|
|
|
javadoc = false
|
|
|
|
tests = false
|
|
|
|
}
|
|
|
|
// we have our own username/password prompts so that they only happen once
|
|
|
|
// TODO: add gpg signing prompts
|
|
|
|
project.gradle.taskGraph.whenReady { taskGraph ->
|
|
|
|
if (taskGraph.allTasks.any { it.name == 'uploadArchives' }) {
|
|
|
|
Console console = System.console()
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasProperty('projectsPrefix') == false) {
|
|
|
|
allprojects {
|
|
|
|
project.ext['projectsPrefix'] = ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
// injecting groovy property variables into all projects
|
|
|
|
project.ext {
|
2015-11-05 01:28:57 -05:00
|
|
|
// for eclipse hacks...
|
|
|
|
isEclipse = System.getProperty("eclipse.launcher") != null || gradle.startParameter.taskNames.contains('eclipse') || gradle.startParameter.taskNames.contains('cleanEclipse')
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
// include license and notice in jars
|
|
|
|
gradle.projectsEvaluated {
|
|
|
|
tasks.withType(Jar) {
|
|
|
|
into('META-INF') {
|
|
|
|
from project.rootProject.rootDir
|
|
|
|
include 'LICENSE.txt'
|
|
|
|
include 'NOTICE.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
all {
|
|
|
|
resolutionStrategy {
|
2015-11-10 17:58:46 -05:00
|
|
|
failOnVersionConflict()
|
2015-10-29 14:40:19 -04:00
|
|
|
|
|
|
|
dependencySubstitution {
|
|
|
|
substitute module("org.elasticsearch:rest-api-spec:${version}") with project("${projectsPrefix}:rest-api-spec")
|
|
|
|
substitute module("org.elasticsearch:elasticsearch:${version}") with project("${projectsPrefix}:core")
|
2015-11-05 01:28:57 -05:00
|
|
|
substitute module("org.elasticsearch:test-framework:${version}") with project("${projectsPrefix}:test-framework")
|
2015-10-29 14:40:19 -04:00
|
|
|
substitute module("org.elasticsearch.distribution.zip:elasticsearch:${version}") with project("${projectsPrefix}:distribution:zip")
|
2015-11-03 01:19:29 -05:00
|
|
|
substitute module("org.elasticsearch.distribution.tar:elasticsearch:${version}") with project("${projectsPrefix}:distribution:tar")
|
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-10-31 00:32:16 -04:00
|
|
|
}
|
|
|
|
|
2015-11-02 13:14:04 -05:00
|
|
|
if (projectsPrefix.isEmpty()) {
|
2015-10-31 00:32:16 -04:00
|
|
|
idea {
|
|
|
|
project {
|
2015-11-12 02:09:57 -05:00
|
|
|
languageLevel = org.elasticsearch.gradle.BuildPlugin.minimumJava
|
2015-10-31 00:32:16 -04:00
|
|
|
vcs = 'Git'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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'
|
|
|
|
|
2015-10-31 02:39:35 -04:00
|
|
|
plugins.withType(JavaBasePlugin) {
|
|
|
|
eclipse.classpath.defaultOutputDir = new File(project.buildDir, 'eclipse')
|
|
|
|
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.
|
|
|
|
folder.output = "build/eclipse/" + i
|
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
}
|
2015-11-02 09:39:14 -05:00
|
|
|
task cleanEclipseSettings(type: Delete) {
|
|
|
|
delete '.settings'
|
|
|
|
}
|
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
|
|
|
|
tasks.cleanEclipse.dependsOn(cleanEclipseSettings)
|
2015-10-30 23:00:05 -04:00
|
|
|
// otherwise the eclipse merging is *super confusing*
|
|
|
|
tasks.eclipse.dependsOn(cleanEclipse)
|
2015-11-02 10:44:51 -05:00
|
|
|
tasks.eclipse.dependsOn(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-02 15:14:45 -05:00
|
|
|
task run(dependsOn: ':distribution:run')
|
|
|
|
|