Manage dependencies for test clusters (#35304)
* Manage dependencies for test clusters Create a configuration and add the distribution to it automatically. A task is created and added as a dependency to any task that uses a test cluster. The task extracts all the zip archives ( only zip support for now ) in the configuration. We do this only once because most tests mostly use the same distribution and thus we can avoid extracting it multiple times. With this we will be able to start the node from the same files which will most of the time live in OS caches or COW if the configuration requires it.
This commit is contained in:
parent
bbe50e7a86
commit
0ce4649e88
|
@ -37,7 +37,7 @@ if (properties.get("org.elasticsearch.acceptScanTOS", "false") == "true") {
|
||||||
}
|
}
|
||||||
|
|
||||||
// common maven publishing configuration
|
// common maven publishing configuration
|
||||||
subprojects {
|
allprojects {
|
||||||
group = 'org.elasticsearch'
|
group = 'org.elasticsearch'
|
||||||
version = VersionProperties.elasticsearch
|
version = VersionProperties.elasticsearch
|
||||||
description = "Elasticsearch subproject ${project.path}"
|
description = "Elasticsearch subproject ${project.path}"
|
||||||
|
@ -185,7 +185,7 @@ task branchConsistency {
|
||||||
dependsOn verifyVersions, verifyBwcTestsEnabled
|
dependsOn verifyVersions, verifyBwcTestsEnabled
|
||||||
}
|
}
|
||||||
|
|
||||||
subprojects {
|
allprojects {
|
||||||
// ignore missing javadocs
|
// ignore missing javadocs
|
||||||
tasks.withType(Javadoc) { Javadoc javadoc ->
|
tasks.withType(Javadoc) { Javadoc javadoc ->
|
||||||
// the -quiet here is because of a bug in gradle, in that adding a string option
|
// the -quiet here is because of a bug in gradle, in that adding a string option
|
||||||
|
@ -288,7 +288,7 @@ subprojects {
|
||||||
if (dep.group == null || false == dep.group.startsWith('org.elasticsearch')) {
|
if (dep.group == null || false == dep.group.startsWith('org.elasticsearch')) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
Project upstreamProject = dependencyToProject(dep)
|
Project upstreamProject = project.ext.dependencyToProject(dep)
|
||||||
if (upstreamProject == null) {
|
if (upstreamProject == null) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,7 @@ package org.elasticsearch;
|
||||||
import org.gradle.api.Action;
|
import org.gradle.api.Action;
|
||||||
import org.gradle.api.Project;
|
import org.gradle.api.Project;
|
||||||
import org.gradle.api.file.CopySpec;
|
import org.gradle.api.file.CopySpec;
|
||||||
|
import org.gradle.api.file.FileCollection;
|
||||||
import org.gradle.api.file.FileTree;
|
import org.gradle.api.file.FileTree;
|
||||||
import org.gradle.api.tasks.WorkResult;
|
import org.gradle.api.tasks.WorkResult;
|
||||||
import org.gradle.process.ExecResult;
|
import org.gradle.process.ExecResult;
|
||||||
|
@ -29,7 +30,7 @@ import org.gradle.process.JavaExecSpec;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Facilitate access to Gradle services without a direct dependency on Project.
|
* Bridge a gap until Gradle offers service injection for plugins.
|
||||||
*
|
*
|
||||||
* In a future release Gradle will offer service injection, this adapter plays that role until that time.
|
* In a future release Gradle will offer service injection, this adapter plays that role until that time.
|
||||||
* It exposes the service methods that are part of the public API as the classes implementing them are not.
|
* It exposes the service methods that are part of the public API as the classes implementing them are not.
|
||||||
|
@ -65,4 +66,8 @@ public class GradleServicesAdapter {
|
||||||
public FileTree zipTree(File zipPath) {
|
public FileTree zipTree(File zipPath) {
|
||||||
return project.zipTree(zipPath);
|
return project.zipTree(zipPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public FileCollection fileTree(File dir) {
|
||||||
|
return project.fileTree(dir);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,17 +20,17 @@ package org.elasticsearch.gradle;
|
||||||
|
|
||||||
public enum Distribution {
|
public enum Distribution {
|
||||||
|
|
||||||
INTEG_TEST("integ-test-zip"),
|
INTEG_TEST("integ-test"),
|
||||||
ZIP("zip"),
|
ZIP("elasticsearch"),
|
||||||
ZIP_OSS("zip-oss");
|
ZIP_OSS("elasticsearch-oss");
|
||||||
|
|
||||||
private final String name;
|
private final String fileName;
|
||||||
|
|
||||||
Distribution(String name) {
|
Distribution(String name) {
|
||||||
this.name = name;
|
this.fileName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getFileName() {
|
||||||
return name;
|
return fileName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@ package org.elasticsearch.gradle.testclusters;
|
||||||
|
|
||||||
import org.elasticsearch.GradleServicesAdapter;
|
import org.elasticsearch.GradleServicesAdapter;
|
||||||
import org.elasticsearch.gradle.Distribution;
|
import org.elasticsearch.gradle.Distribution;
|
||||||
import org.elasticsearch.gradle.Version;
|
|
||||||
import org.gradle.api.logging.Logger;
|
import org.gradle.api.logging.Logger;
|
||||||
import org.gradle.api.logging.Logging;
|
import org.gradle.api.logging.Logging;
|
||||||
|
|
||||||
|
@ -35,7 +34,7 @@ public class ElasticsearchNode {
|
||||||
private final Logger logger = Logging.getLogger(ElasticsearchNode.class);
|
private final Logger logger = Logging.getLogger(ElasticsearchNode.class);
|
||||||
|
|
||||||
private Distribution distribution;
|
private Distribution distribution;
|
||||||
private Version version;
|
private String version;
|
||||||
|
|
||||||
public ElasticsearchNode(String name, GradleServicesAdapter services) {
|
public ElasticsearchNode(String name, GradleServicesAdapter services) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
|
@ -46,11 +45,11 @@ public class ElasticsearchNode {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Version getVersion() {
|
public String getVersion() {
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setVersion(Version version) {
|
public void setVersion(String version) {
|
||||||
checkFrozen();
|
checkFrozen();
|
||||||
this.version = version;
|
this.version = version;
|
||||||
}
|
}
|
||||||
|
@ -75,6 +74,7 @@ public class ElasticsearchNode {
|
||||||
public void freeze() {
|
public void freeze() {
|
||||||
logger.info("Locking configuration of `{}`", this);
|
logger.info("Locking configuration of `{}`", this);
|
||||||
configurationFrozen.set(true);
|
configurationFrozen.set(true);
|
||||||
|
Objects.requireNonNull(version, "Version of test cluster `" + this + "` can't be null");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkFrozen() {
|
private void checkFrozen() {
|
||||||
|
|
|
@ -0,0 +1,77 @@
|
||||||
|
/*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
package org.elasticsearch.gradle.testclusters;
|
||||||
|
|
||||||
|
import org.gradle.api.DefaultTask;
|
||||||
|
import org.gradle.api.Project;
|
||||||
|
import org.gradle.api.file.FileCollection;
|
||||||
|
import org.gradle.api.tasks.InputFiles;
|
||||||
|
import org.gradle.api.tasks.OutputDirectory;
|
||||||
|
import org.gradle.api.tasks.TaskAction;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
public class SyncTestClustersConfiguration extends DefaultTask {
|
||||||
|
|
||||||
|
@InputFiles
|
||||||
|
public FileCollection getDependencies() {
|
||||||
|
Set<File> nonZip = getProject().getConfigurations()
|
||||||
|
.getByName(TestClustersPlugin.HELPER_CONFIGURATION_NAME)
|
||||||
|
.getFiles()
|
||||||
|
.stream()
|
||||||
|
.filter(file -> file.getName().endsWith(".zip") == false)
|
||||||
|
.collect(Collectors.toSet());
|
||||||
|
if(nonZip.isEmpty() == false) {
|
||||||
|
throw new IllegalStateException("Expected only zip files in configuration : " +
|
||||||
|
TestClustersPlugin.HELPER_CONFIGURATION_NAME + " but found " +
|
||||||
|
nonZip
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return getProject().files(
|
||||||
|
getProject().getConfigurations()
|
||||||
|
.getByName(TestClustersPlugin.HELPER_CONFIGURATION_NAME)
|
||||||
|
.getFiles()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@OutputDirectory
|
||||||
|
public File getOutputDir() {
|
||||||
|
return getTestClustersConfigurationExtractDir(getProject());
|
||||||
|
}
|
||||||
|
|
||||||
|
@TaskAction
|
||||||
|
public void doExtract() {
|
||||||
|
File outputDir = getOutputDir();
|
||||||
|
getProject().delete(outputDir);
|
||||||
|
outputDir.mkdirs();
|
||||||
|
getDependencies().forEach(dep ->
|
||||||
|
getProject().copy(spec -> {
|
||||||
|
spec.from(getProject().zipTree(dep));
|
||||||
|
spec.into(new File(outputDir, "zip"));
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
static File getTestClustersConfigurationExtractDir(Project project) {
|
||||||
|
return new File(TestClustersPlugin.getTestClustersBuildDir(project), "extract");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -24,6 +24,7 @@ import org.gradle.api.NamedDomainObjectContainer;
|
||||||
import org.gradle.api.Plugin;
|
import org.gradle.api.Plugin;
|
||||||
import org.gradle.api.Project;
|
import org.gradle.api.Project;
|
||||||
import org.gradle.api.Task;
|
import org.gradle.api.Task;
|
||||||
|
import org.gradle.api.artifacts.Configuration;
|
||||||
import org.gradle.api.execution.TaskActionListener;
|
import org.gradle.api.execution.TaskActionListener;
|
||||||
import org.gradle.api.execution.TaskExecutionListener;
|
import org.gradle.api.execution.TaskExecutionListener;
|
||||||
import org.gradle.api.logging.Logger;
|
import org.gradle.api.logging.Logger;
|
||||||
|
@ -31,6 +32,7 @@ import org.gradle.api.logging.Logging;
|
||||||
import org.gradle.api.plugins.ExtraPropertiesExtension;
|
import org.gradle.api.plugins.ExtraPropertiesExtension;
|
||||||
import org.gradle.api.tasks.TaskState;
|
import org.gradle.api.tasks.TaskState;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
@ -44,7 +46,8 @@ public class TestClustersPlugin implements Plugin<Project> {
|
||||||
|
|
||||||
private static final String LIST_TASK_NAME = "listTestClusters";
|
private static final String LIST_TASK_NAME = "listTestClusters";
|
||||||
private static final String NODE_EXTENSION_NAME = "testClusters";
|
private static final String NODE_EXTENSION_NAME = "testClusters";
|
||||||
public static final String PROPERTY_TESTCLUSTERS_RUN_ONCE = "_testclusters_run_once";
|
static final String HELPER_CONFIGURATION_NAME = "testclusters";
|
||||||
|
private static final String SYNC_ARTIFACTS_TASK_NAME = "syncTestClustersArtifacts";
|
||||||
|
|
||||||
private final Logger logger = Logging.getLogger(TestClustersPlugin.class);
|
private final Logger logger = Logging.getLogger(TestClustersPlugin.class);
|
||||||
|
|
||||||
|
@ -56,6 +59,8 @@ public class TestClustersPlugin implements Plugin<Project> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void apply(Project project) {
|
public void apply(Project project) {
|
||||||
|
Project rootProject = project.getRootProject();
|
||||||
|
|
||||||
// enable the DSL to describe clusters
|
// enable the DSL to describe clusters
|
||||||
NamedDomainObjectContainer<ElasticsearchNode> container = createTestClustersContainerExtension(project);
|
NamedDomainObjectContainer<ElasticsearchNode> container = createTestClustersContainerExtension(project);
|
||||||
|
|
||||||
|
@ -67,14 +72,28 @@ public class TestClustersPlugin implements Plugin<Project> {
|
||||||
|
|
||||||
// There's a single Gradle instance for multi project builds, this means that some configuration needs to be
|
// There's a single Gradle instance for multi project builds, this means that some configuration needs to be
|
||||||
// done only once even if the plugin is applied multiple times as a part of multi project build
|
// done only once even if the plugin is applied multiple times as a part of multi project build
|
||||||
ExtraPropertiesExtension rootProperties = project.getRootProject().getExtensions().getExtraProperties();
|
if (rootProject.getConfigurations().findByName(HELPER_CONFIGURATION_NAME) == null) {
|
||||||
if (rootProperties.has(PROPERTY_TESTCLUSTERS_RUN_ONCE) == false) {
|
// We use a single configuration on the root project to resolve all testcluster dependencies ( like distros )
|
||||||
rootProperties.set(PROPERTY_TESTCLUSTERS_RUN_ONCE, true);
|
// at once, only once without the need to repeat it for each project. This pays off assuming that most
|
||||||
|
// projects use the same dependencies.
|
||||||
|
Configuration helperConfiguration = project.getRootProject().getConfigurations().create(HELPER_CONFIGURATION_NAME);
|
||||||
|
helperConfiguration.setDescription(
|
||||||
|
"Internal helper configuration used by cluster configuration to download " +
|
||||||
|
"ES distributions and plugins."
|
||||||
|
);
|
||||||
|
|
||||||
// When running in the Daemon it's possible for this to hold references to past
|
// When running in the Daemon it's possible for this to hold references to past
|
||||||
usedClusters.clear();
|
usedClusters.clear();
|
||||||
claimsInventory.clear();
|
claimsInventory.clear();
|
||||||
runningClusters.clear();
|
runningClusters.clear();
|
||||||
|
|
||||||
|
|
||||||
|
// We have a single task to sync the helper configuration to "artifacts dir"
|
||||||
|
// the clusters will look for artifacts there based on the naming conventions.
|
||||||
|
// Tasks that use a cluster will add this as a dependency automatically so it's guaranteed to run early in
|
||||||
|
// the build.
|
||||||
|
rootProject.getTasks().create(SYNC_ARTIFACTS_TASK_NAME, SyncTestClustersConfiguration.class);
|
||||||
|
|
||||||
// When we know what tasks will run, we claim the clusters of those task to differentiate between clusters
|
// When we know what tasks will run, we claim the clusters of those task to differentiate between clusters
|
||||||
// that are defined in the build script and the ones that will actually be used in this invocation of gradle
|
// that are defined in the build script and the ones that will actually be used in this invocation of gradle
|
||||||
// we use this information to determine when the last task that required the cluster executed so that we can
|
// we use this information to determine when the last task that required the cluster executed so that we can
|
||||||
|
@ -86,6 +105,10 @@ public class TestClustersPlugin implements Plugin<Project> {
|
||||||
|
|
||||||
// After each task we determine if there are clusters that are no longer needed.
|
// After each task we determine if there are clusters that are no longer needed.
|
||||||
configureStopClustersHook(project);
|
configureStopClustersHook(project);
|
||||||
|
|
||||||
|
// Since we have everything modeled in the DSL, add all the required dependencies e.x. the distribution to the
|
||||||
|
// configuration so the user doesn't have to repeat this.
|
||||||
|
autoConfigureClusterDependencies(project, rootProject, container);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,7 +146,15 @@ public class TestClustersPlugin implements Plugin<Project> {
|
||||||
"useCluster",
|
"useCluster",
|
||||||
new Closure<Void>(this, task) {
|
new Closure<Void>(this, task) {
|
||||||
public void doCall(ElasticsearchNode node) {
|
public void doCall(ElasticsearchNode node) {
|
||||||
|
Object thisObject = this.getThisObject();
|
||||||
|
if (thisObject instanceof Task == false) {
|
||||||
|
throw new AssertionError("Expected " + thisObject + " to be an instance of " +
|
||||||
|
"Task, but got: " + thisObject.getClass());
|
||||||
|
}
|
||||||
usedClusters.computeIfAbsent(task, k -> new ArrayList<>()).add(node);
|
usedClusters.computeIfAbsent(task, k -> new ArrayList<>()).add(node);
|
||||||
|
((Task) thisObject).dependsOn(
|
||||||
|
project.getRootProject().getTasks().getByName(SYNC_ARTIFACTS_TASK_NAME)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
@ -205,4 +236,42 @@ public class TestClustersPlugin implements Plugin<Project> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static File getTestClustersBuildDir(Project project) {
|
||||||
|
return new File(project.getRootProject().getBuildDir(), "testclusters");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Boilerplate to get testClusters container extension
|
||||||
|
*
|
||||||
|
* Equivalent to project.testClusters in the DSL
|
||||||
|
*/
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
public static NamedDomainObjectContainer<ElasticsearchNode> getNodeExtension(Project project) {
|
||||||
|
return (NamedDomainObjectContainer<ElasticsearchNode>)
|
||||||
|
project.getExtensions().getByName(NODE_EXTENSION_NAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void autoConfigureClusterDependencies(
|
||||||
|
Project project,
|
||||||
|
Project rootProject,
|
||||||
|
NamedDomainObjectContainer<ElasticsearchNode> container
|
||||||
|
) {
|
||||||
|
// When the project evaluated we know of all tasks that use clusters.
|
||||||
|
// Each of these have to depend on the artifacts being synced.
|
||||||
|
// We need afterEvaluate here despite the fact that container is a domain object, we can't implement this with
|
||||||
|
// all because fields can change after the fact.
|
||||||
|
project.afterEvaluate(ip -> container.forEach(esNode -> {
|
||||||
|
// declare dependencies against artifacts needed by cluster formation.
|
||||||
|
String dependency = String.format(
|
||||||
|
"org.elasticsearch.distribution.zip:%s:%s@zip",
|
||||||
|
esNode.getDistribution().getFileName(),
|
||||||
|
esNode.getVersion()
|
||||||
|
);
|
||||||
|
logger.info("Cluster {} depends on {}", esNode.getName(), dependency);
|
||||||
|
rootProject.getDependencies().add(HELPER_CONFIGURATION_NAME, dependency);
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,7 +81,7 @@ public class TestClustersPluginIT extends GradleIntegrationTestCase {
|
||||||
public void testMultiProject() {
|
public void testMultiProject() {
|
||||||
BuildResult result = GradleRunner.create()
|
BuildResult result = GradleRunner.create()
|
||||||
.withProjectDir(getProjectDir("testclusters_multiproject"))
|
.withProjectDir(getProjectDir("testclusters_multiproject"))
|
||||||
.withArguments("user1", "user2", "-s", "-i", "--parallel")
|
.withArguments("user1", "user2", "-s", "-i", "--parallel", "-Dlocal.repo.path=" + getLocalTestRepoPath())
|
||||||
.withPluginClasspath()
|
.withPluginClasspath()
|
||||||
.build();
|
.build();
|
||||||
assertTaskSuccessful(result, ":user1", ":user2");
|
assertTaskSuccessful(result, ":user1", ":user2");
|
||||||
|
@ -130,16 +130,16 @@ public class TestClustersPluginIT extends GradleIntegrationTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private GradleRunner getTestClustersRunner(String... tasks) {
|
private GradleRunner getTestClustersRunner(String... tasks) {
|
||||||
String[] arguments = Arrays.copyOf(tasks, tasks.length + 2);
|
String[] arguments = Arrays.copyOf(tasks, tasks.length + 3);
|
||||||
arguments[tasks.length] = "-s";
|
arguments[tasks.length] = "-s";
|
||||||
arguments[tasks.length + 1] = "-i";
|
arguments[tasks.length + 1] = "-i";
|
||||||
|
arguments[tasks.length + 2] = "-Dlocal.repo.path=" + getLocalTestRepoPath();
|
||||||
return GradleRunner.create()
|
return GradleRunner.create()
|
||||||
.withProjectDir(getProjectDir("testclusters"))
|
.withProjectDir(getProjectDir("testclusters"))
|
||||||
.withArguments(arguments)
|
.withArguments(arguments)
|
||||||
.withPluginClasspath();
|
.withPluginClasspath();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void assertStartedAndStoppedOnce(BuildResult result) {
|
private void assertStartedAndStoppedOnce(BuildResult result) {
|
||||||
assertOutputOnlyOnce(
|
assertOutputOnlyOnce(
|
||||||
result.getOutput(),
|
result.getOutput(),
|
||||||
|
|
|
@ -4,7 +4,14 @@ plugins {
|
||||||
|
|
||||||
testClusters {
|
testClusters {
|
||||||
myTestCluster {
|
myTestCluster {
|
||||||
distribution = 'ZIP'
|
distribution = 'ZIP'
|
||||||
|
version = '7.0.0-alpha1-SNAPSHOT'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url System.getProperty("local.repo.path")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,10 @@ plugins {
|
||||||
id 'elasticsearch.testclusters'
|
id 'elasticsearch.testclusters'
|
||||||
}
|
}
|
||||||
testClusters {
|
testClusters {
|
||||||
myTestCluster
|
myTestCluster {
|
||||||
|
distribution = 'ZIP'
|
||||||
|
version = '7.0.0-alpha1-SNAPSHOT'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
task user1 {
|
task user1 {
|
||||||
useCluster testClusters.myTestCluster
|
useCluster testClusters.myTestCluster
|
||||||
|
|
|
@ -3,7 +3,10 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
testClusters {
|
testClusters {
|
||||||
myTestCluster
|
myTestCluster {
|
||||||
|
distribution = 'ZIP'
|
||||||
|
version = '7.0.0-alpha1-SNAPSHOT'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task user1 {
|
task user1 {
|
||||||
|
|
|
@ -2,8 +2,19 @@ plugins {
|
||||||
id 'elasticsearch.testclusters'
|
id 'elasticsearch.testclusters'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url System.getProperty("local.repo.path")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
testClusters {
|
testClusters {
|
||||||
myTestCluster
|
myTestCluster {
|
||||||
|
distribution = 'ZIP'
|
||||||
|
version = '7.0.0-alpha1-SNAPSHOT'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task user1 {
|
task user1 {
|
||||||
|
|
Loading…
Reference in New Issue