2018-02-14 01:49:53 -05: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 org.apache.tools.ant.taskdefs.condition.Os
|
2018-02-21 20:46:40 -05:00
|
|
|
import org.apache.tools.ant.filters.FixCrLfFilter
|
2018-02-14 01:49:53 -05:00
|
|
|
import org.elasticsearch.gradle.BuildPlugin
|
|
|
|
import org.elasticsearch.gradle.EmptyDirTask
|
2018-03-08 22:46:54 -05:00
|
|
|
import org.elasticsearch.gradle.LoggedExec
|
2018-02-14 01:49:53 -05:00
|
|
|
import org.elasticsearch.gradle.MavenFilteringHack
|
2018-04-24 12:10:51 -04:00
|
|
|
import org.elasticsearch.gradle.VersionProperties
|
2018-02-21 20:46:40 -05:00
|
|
|
import org.elasticsearch.gradle.plugin.PluginBuildPlugin
|
2018-02-14 01:49:53 -05:00
|
|
|
|
2018-04-24 12:10:51 -04:00
|
|
|
import java.nio.file.Files
|
|
|
|
import java.nio.file.Path
|
|
|
|
|
2018-02-21 20:46:40 -05:00
|
|
|
// need this so Zip/Tar tasks get basic defaults...
|
|
|
|
apply plugin: 'base'
|
|
|
|
|
|
|
|
// CopySpec does not make it easy to create an empty directory so we
|
|
|
|
// create the directory that we want, and then point CopySpec to its
|
|
|
|
// parent to copy to the root of the distribution
|
|
|
|
ext.logsDir = new File(buildDir, 'logs-hack/logs')
|
|
|
|
task createLogsDir(type: EmptyDirTask) {
|
|
|
|
dir "${logsDir}"
|
|
|
|
dirMode 0755
|
|
|
|
}
|
|
|
|
ext.pluginsDir= new File(buildDir, 'plugins-hack/plugins')
|
|
|
|
task createPluginsDir(type: EmptyDirTask) {
|
|
|
|
dir "${pluginsDir}"
|
|
|
|
dirMode 0755
|
|
|
|
}
|
|
|
|
|
2018-04-11 22:37:59 -04:00
|
|
|
CopySpec archiveFiles(CopySpec modulesFiles, String distributionType, boolean oss) {
|
2018-02-21 20:46:40 -05:00
|
|
|
return copySpec {
|
2018-02-14 01:49:53 -05:00
|
|
|
into("elasticsearch-${version}") {
|
2018-05-25 07:56:35 -04:00
|
|
|
into('lib') {
|
|
|
|
with libFiles
|
|
|
|
}
|
2018-02-14 01:49:53 -05:00
|
|
|
into('config') {
|
|
|
|
dirMode 0750
|
|
|
|
fileMode 0660
|
2018-04-11 22:37:59 -04:00
|
|
|
with configFiles(distributionType, oss)
|
2018-02-14 01:49:53 -05:00
|
|
|
}
|
|
|
|
into('bin') {
|
2018-04-11 22:37:59 -04:00
|
|
|
with binFiles(distributionType, oss)
|
2018-02-14 01:49:53 -05:00
|
|
|
with copySpec {
|
2018-02-21 20:46:40 -05:00
|
|
|
from('../src/bin') {
|
2018-02-14 01:49:53 -05:00
|
|
|
include '*.bat'
|
|
|
|
filter(FixCrLfFilter, eol: FixCrLfFilter.CrLf.newInstance('crlf'))
|
|
|
|
}
|
2018-04-11 22:37:59 -04:00
|
|
|
MavenFilteringHack.filter(it, expansionsForDistribution(distributionType, oss))
|
2018-02-14 01:49:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
into('') {
|
|
|
|
from {
|
|
|
|
dirMode 0755
|
2018-02-21 20:46:40 -05:00
|
|
|
logsDir.getParent()
|
2018-02-14 01:49:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
into('') {
|
|
|
|
from {
|
|
|
|
dirMode 0755
|
2018-02-21 20:46:40 -05:00
|
|
|
pluginsDir.getParent()
|
2018-02-14 01:49:53 -05:00
|
|
|
}
|
|
|
|
}
|
2018-04-10 16:58:49 -04:00
|
|
|
from(rootProject.projectDir) {
|
|
|
|
include 'README.textile'
|
|
|
|
}
|
|
|
|
from(rootProject.file('licenses')) {
|
|
|
|
include oss ? 'APACHE-LICENSE-2.0.txt' : 'ELASTIC-LICENSE.txt'
|
|
|
|
rename { 'LICENSE.txt' }
|
|
|
|
}
|
|
|
|
|
2018-02-14 01:49:53 -05:00
|
|
|
with noticeFile
|
2018-02-21 20:46:40 -05:00
|
|
|
from('../src') {
|
2018-02-14 01:49:53 -05:00
|
|
|
include 'bin/*.exe'
|
|
|
|
}
|
2018-02-23 11:03:17 -05:00
|
|
|
into('modules') {
|
|
|
|
with modulesFiles
|
2018-02-14 01:49:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-21 20:46:40 -05:00
|
|
|
|
2018-02-23 11:03:17 -05:00
|
|
|
// common config across all zip/tar
|
|
|
|
tasks.withType(AbstractArchiveTask) {
|
2018-02-21 20:46:40 -05:00
|
|
|
dependsOn createLogsDir, createPluginsDir
|
2018-02-23 11:03:17 -05:00
|
|
|
String subdir = it.name.substring('build'.size()).replaceAll(/[A-Z]/) { '-' + it.toLowerCase() }.substring(1)
|
|
|
|
destinationDir = file("${subdir}/build/distributions")
|
|
|
|
baseName = "elasticsearch${ subdir.contains('oss') ? '-oss' : ''}"
|
|
|
|
}
|
|
|
|
|
2018-05-29 20:32:06 -04:00
|
|
|
Closure commonZipConfig = {
|
|
|
|
dirMode 0755
|
|
|
|
fileMode 0644
|
|
|
|
}
|
|
|
|
|
2018-02-23 11:03:17 -05:00
|
|
|
task buildIntegTestZip(type: Zip) {
|
2018-05-29 20:32:06 -04:00
|
|
|
configure(commonZipConfig)
|
2018-04-11 22:37:59 -04:00
|
|
|
with archiveFiles(transportModulesFiles, 'zip', false)
|
2018-02-21 20:46:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
task buildZip(type: Zip) {
|
2018-05-29 20:32:06 -04:00
|
|
|
configure(commonZipConfig)
|
2018-04-11 22:37:59 -04:00
|
|
|
with archiveFiles(modulesFiles(false), 'zip', false)
|
2018-02-21 20:46:40 -05:00
|
|
|
}
|
|
|
|
|
2018-02-23 11:03:17 -05:00
|
|
|
task buildOssZip(type: Zip) {
|
2018-05-29 20:32:06 -04:00
|
|
|
configure(commonZipConfig)
|
2018-04-11 22:37:59 -04:00
|
|
|
with archiveFiles(modulesFiles(true), 'zip', true)
|
2018-02-23 11:03:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Closure commonTarConfig = {
|
2018-02-21 20:46:40 -05:00
|
|
|
extension = 'tar.gz'
|
|
|
|
compression = Compression.GZIP
|
|
|
|
dirMode 0755
|
|
|
|
fileMode 0644
|
2018-02-23 11:03:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
task buildTar(type: Tar) {
|
|
|
|
configure(commonTarConfig)
|
2018-04-11 22:37:59 -04:00
|
|
|
with archiveFiles(modulesFiles(false), 'tar', false)
|
2018-02-23 11:03:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
task buildOssTar(type: Tar) {
|
|
|
|
configure(commonTarConfig)
|
2018-04-11 22:37:59 -04:00
|
|
|
with archiveFiles(modulesFiles(true), 'tar', true)
|
2018-02-21 20:46:40 -05:00
|
|
|
}
|
|
|
|
|
2018-04-24 12:10:51 -04:00
|
|
|
Closure tarExists = { it -> new File('/bin/tar').exists() || new File('/usr/bin/tar').exists() || new File('/usr/local/bin/tar').exists() }
|
|
|
|
Closure unzipExists = { it -> new File('/bin/unzip').exists() || new File('/usr/bin/unzip').exists() || new File('/usr/local/bin/unzip').exists() }
|
|
|
|
|
2018-02-21 20:46:40 -05:00
|
|
|
// This configures the default artifact for the distribution specific
|
|
|
|
// subprojects. We have subprojects for two reasons:
|
|
|
|
// 1. Gradle project substitutions can only bind to the default
|
|
|
|
// configuration of a project
|
|
|
|
// 2. The integ-test-zip and zip distributions have the exact same
|
|
|
|
// filename, so they must be placed in different directories.
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'distribution'
|
|
|
|
|
|
|
|
String buildTask = "build${it.name.replaceAll(/-[a-z]/) { it.substring(1).toUpperCase() }.capitalize()}"
|
|
|
|
ext.buildDist = parent.tasks.getByName(buildTask)
|
|
|
|
artifacts {
|
|
|
|
'default' buildDist
|
|
|
|
}
|
2018-03-08 22:46:54 -05:00
|
|
|
|
2018-04-24 12:10:51 -04:00
|
|
|
// sanity checks if archives can be extracted
|
|
|
|
final File archiveExtractionDir
|
|
|
|
if (project.name.contains('tar')) {
|
|
|
|
archiveExtractionDir = new File(buildDir, 'tar-extracted')
|
|
|
|
} else {
|
|
|
|
assert project.name.contains('zip')
|
|
|
|
archiveExtractionDir = new File(buildDir, 'zip-extracted')
|
|
|
|
}
|
|
|
|
task checkExtraction(type: LoggedExec) {
|
2018-03-08 22:46:54 -05:00
|
|
|
dependsOn buildDist
|
|
|
|
doFirst {
|
2018-04-24 12:10:51 -04:00
|
|
|
project.delete(archiveExtractionDir)
|
|
|
|
archiveExtractionDir.mkdirs()
|
2018-03-08 22:46:54 -05:00
|
|
|
}
|
|
|
|
}
|
2018-04-24 12:10:51 -04:00
|
|
|
check.dependsOn checkExtraction
|
|
|
|
if (project.name.contains('tar')) {
|
|
|
|
checkExtraction {
|
|
|
|
onlyIf tarExists
|
|
|
|
commandLine 'tar', '-xvzf', "${-> buildDist.outputs.files.singleFile}", '-C', archiveExtractionDir
|
2018-03-08 22:46:54 -05:00
|
|
|
}
|
2018-04-24 12:10:51 -04:00
|
|
|
} else {
|
|
|
|
assert project.name.contains('zip')
|
|
|
|
checkExtraction {
|
|
|
|
onlyIf unzipExists
|
|
|
|
commandLine 'unzip', "${-> buildDist.outputs.files.singleFile}", '-d', archiveExtractionDir
|
2018-03-08 22:46:54 -05:00
|
|
|
}
|
|
|
|
}
|
2018-04-24 12:10:51 -04:00
|
|
|
|
|
|
|
final Closure toolExists
|
|
|
|
if (project.name.contains('tar')) {
|
|
|
|
toolExists = tarExists
|
|
|
|
} else {
|
|
|
|
assert project.name.contains('zip')
|
|
|
|
toolExists = unzipExists
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
task checkLicense {
|
|
|
|
dependsOn buildDist, checkExtraction
|
|
|
|
onlyIf toolExists
|
|
|
|
doLast {
|
|
|
|
final String licenseFilename
|
|
|
|
if (project.name.contains('oss-')) {
|
|
|
|
licenseFilename = "APACHE-LICENSE-2.0.txt"
|
|
|
|
} else {
|
|
|
|
licenseFilename = "ELASTIC-LICENSE.txt"
|
|
|
|
}
|
|
|
|
final List<String> licenseLines = Files.readAllLines(rootDir.toPath().resolve("licenses/" + licenseFilename))
|
|
|
|
final Path licensePath = archiveExtractionDir.toPath().resolve("elasticsearch-${VersionProperties.elasticsearch}/LICENSE.txt")
|
2018-04-25 09:38:31 -04:00
|
|
|
assertLinesInFile(licensePath, licenseLines)
|
2018-04-24 12:10:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
check.dependsOn checkLicense
|
|
|
|
|
|
|
|
task checkNotice {
|
|
|
|
dependsOn buildDist, checkExtraction
|
|
|
|
onlyIf toolExists
|
|
|
|
doLast {
|
|
|
|
final List<String> noticeLines = Arrays.asList("Elasticsearch", "Copyright 2009-2018 Elasticsearch")
|
|
|
|
final Path noticePath = archiveExtractionDir.toPath().resolve("elasticsearch-${VersionProperties.elasticsearch}/NOTICE.txt")
|
2018-04-25 09:38:31 -04:00
|
|
|
assertLinesInFile(noticePath, noticeLines)
|
2018-04-24 12:10:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
check.dependsOn checkNotice
|
|
|
|
|
2018-04-30 15:05:27 -04:00
|
|
|
if (project.name == 'zip' || project.name == 'tar') {
|
|
|
|
task checkMlCppNotice {
|
|
|
|
dependsOn buildDist, checkExtraction
|
|
|
|
onlyIf toolExists
|
|
|
|
doLast {
|
|
|
|
// this is just a small sample from the C++ notices, the idea being that if we've added these lines we've probably added all the required lines
|
|
|
|
final List<String> expectedLines = Arrays.asList("Apache log4cxx", "Boost Software License - Version 1.0 - August 17th, 2003")
|
2018-05-16 18:35:57 -04:00
|
|
|
final Path noticePath = archiveExtractionDir.toPath().resolve("elasticsearch-${VersionProperties.elasticsearch}/modules/x-pack-ml/NOTICE.txt")
|
2018-04-30 15:05:27 -04:00
|
|
|
final List<String> actualLines = Files.readAllLines(noticePath)
|
|
|
|
for (final String expectedLine : expectedLines) {
|
|
|
|
if (actualLines.contains(expectedLine) == false) {
|
|
|
|
throw new GradleException("expected [${noticePath}] to contain [${expectedLine}] but it did not")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
check.dependsOn checkMlCppNotice
|
|
|
|
}
|
2018-02-21 20:46:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Rest test config *
|
|
|
|
*****************************************************************************/
|
2018-03-08 22:46:54 -05:00
|
|
|
configure(subprojects.findAll { it.name == 'integ-test-zip' }) {
|
2018-02-21 20:46:40 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
2018-03-08 22:46:54 -05:00
|
|
|
integTest {
|
2018-02-23 11:03:17 -05:00
|
|
|
includePackaged = true
|
2018-02-21 20:46:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
integTestCluster {
|
|
|
|
dependsOn assemble
|
|
|
|
distribution = project.name
|
|
|
|
}
|
|
|
|
integTestRunner {
|
|
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS) && System.getProperty('tests.timeoutSuite') == null) {
|
|
|
|
// override the suite timeout to 30 mins for windows, because it has the most inefficient filesystem known to man
|
|
|
|
systemProperty 'tests.timeoutSuite', '1800000!'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
processTestResources {
|
|
|
|
inputs.properties(project(':distribution').restTestExpansions)
|
|
|
|
MavenFilteringHack.filter(it, project(':distribution').restTestExpansions)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Maven config *
|
|
|
|
*****************************************************************************/
|
|
|
|
configure(subprojects.findAll { it.name.contains('zip') }) {
|
|
|
|
// only zip distributions go to maven
|
|
|
|
BuildPlugin.configurePomGeneration(project)
|
|
|
|
apply plugin: 'nebula.info-scm'
|
|
|
|
apply plugin: 'nebula.maven-base-publish'
|
|
|
|
apply plugin: 'nebula.maven-scm'
|
|
|
|
|
|
|
|
// note: the group must be correct before applying the nexus plugin, or
|
|
|
|
// it will capture the wrong value...
|
2018-02-23 11:03:17 -05:00
|
|
|
String subgroup = project.name == 'integ-test-zip' ? 'integ-test-zip' : 'zip'
|
|
|
|
project.group = "org.elasticsearch.distribution.${subgroup}"
|
|
|
|
|
|
|
|
// make the pom file name use elasticsearch instead of the project name
|
|
|
|
archivesBaseName = "elasticsearch${it.name.contains('oss') ? '-oss' : ''}"
|
2018-02-21 20:46:40 -05:00
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
nebula {
|
2018-02-23 11:03:17 -05:00
|
|
|
artifactId archivesBaseName
|
2018-02-21 20:46:40 -05:00
|
|
|
artifact buildDist
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* HUGE HACK: the underlying maven publication library refuses to
|
|
|
|
* deploy any attached artifacts when the packaging type is set to
|
|
|
|
* 'pom'. But Sonatype's OSS repositories require source files for
|
|
|
|
* artifacts that are of type 'zip'. We already publish the source
|
|
|
|
* and javadoc for Elasticsearch under the various other subprojects.
|
|
|
|
* So here we create another publication using the same name that
|
|
|
|
* has the "real" pom, and rely on the fact that gradle will execute
|
|
|
|
* the publish tasks in alphabetical order. This lets us publish the
|
|
|
|
* zip file and even though the pom says the type is 'pom' instead of
|
|
|
|
* 'zip'. We cannot setup a dependency between the tasks because the
|
|
|
|
* publishing tasks are created *extremely* late in the configuration
|
|
|
|
* phase, so that we cannot get ahold of the actual task. Furthermore,
|
|
|
|
* this entire hack only exists so we can make publishing to maven
|
|
|
|
* local work, since we publish to maven central externally.
|
|
|
|
*/
|
|
|
|
nebulaRealPom(MavenPublication) {
|
2018-02-23 11:03:17 -05:00
|
|
|
artifactId archivesBaseName
|
2018-02-21 20:46:40 -05:00
|
|
|
pom.packaging = 'pom'
|
|
|
|
pom.withXml { XmlProvider xml ->
|
|
|
|
Node root = xml.asNode()
|
|
|
|
root.appendNode('name', 'Elasticsearch')
|
|
|
|
root.appendNode('description', 'A Distributed RESTful Search Engine')
|
|
|
|
root.appendNode('url', PluginBuildPlugin.urlFromOrigin(project.scminfo.origin))
|
|
|
|
Node scmNode = root.appendNode('scm')
|
|
|
|
scmNode.appendNode('url', project.scminfo.origin)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|