2018-04-30 19:35:26 -04:00
|
|
|
import org.elasticsearch.gradle.precommit.PrecommitTasks
|
|
|
|
|
2015-11-02 12:40:47 -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.
|
|
|
|
*/
|
|
|
|
|
2018-04-30 19:35:26 -04:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'elasticsearch.build'
|
|
|
|
id 'elasticsearch.vagrantsupport'
|
|
|
|
id 'elasticsearch.vagrant'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "junit:junit:${versions.junit}"
|
|
|
|
compile "org.hamcrest:hamcrest-core:${versions.hamcrest}"
|
2018-05-23 13:37:57 -04:00
|
|
|
compile "org.hamcrest:hamcrest-library:${versions.hamcrest}"
|
2018-04-30 19:35:26 -04:00
|
|
|
|
2018-05-23 13:37:57 -04:00
|
|
|
compile project(':libs:elasticsearch-core')
|
2018-04-30 19:35:26 -04:00
|
|
|
|
|
|
|
// pulls in the jar built by this project and its dependencies
|
|
|
|
packagingTest project(path: project.path, configuration: 'runtime')
|
|
|
|
}
|
2015-11-05 15:47:54 -05:00
|
|
|
|
2017-05-15 15:58:11 -04:00
|
|
|
List<String> plugins = []
|
|
|
|
for (Project subproj : project.rootProject.subprojects) {
|
2018-04-27 10:49:06 -04:00
|
|
|
if (subproj.parent.path == ':plugins' || subproj.path.equals(':example-plugins:custom-settings')) {
|
2017-05-15 15:58:11 -04:00
|
|
|
// add plugin as a dep
|
|
|
|
dependencies {
|
2018-03-26 16:43:09 -04:00
|
|
|
packaging project(path: "${subproj.path}", configuration: 'zip')
|
2016-06-27 12:13:06 -04:00
|
|
|
}
|
2017-05-15 15:58:11 -04:00
|
|
|
plugins.add(subproj.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
plugins = plugins.toSorted()
|
|
|
|
|
2018-03-26 16:43:09 -04:00
|
|
|
setupPackagingTest {
|
2017-05-15 15:58:11 -04:00
|
|
|
doFirst {
|
|
|
|
File expectedPlugins = file('build/plugins/expected')
|
|
|
|
expectedPlugins.parentFile.mkdirs()
|
|
|
|
expectedPlugins.setText(plugins.join('\n'), 'UTF-8')
|
2016-06-27 12:13:06 -04:00
|
|
|
}
|
|
|
|
}
|
2018-04-30 19:35:26 -04:00
|
|
|
|
|
|
|
esvagrant {
|
|
|
|
testClass 'org.elasticsearch.packaging.PackagingTests'
|
|
|
|
}
|
|
|
|
|
|
|
|
forbiddenApisMain {
|
|
|
|
signaturesURLs = [
|
|
|
|
PrecommitTasks.getResource('/forbidden/jdk-signatures.txt')
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
// we don't have additional tests for the tests themselves
|
|
|
|
tasks.test.enabled = false
|
|
|
|
|
|
|
|
// this project doesn't get published
|
|
|
|
tasks.dependencyLicenses.enabled = false
|
|
|
|
tasks.dependenciesInfo.enabled = false
|