23 lines
1001 B
Groovy
23 lines
1001 B
Groovy
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
esplugin {
|
|
description 'A test module that simulates read latencies from an object-store based repository'
|
|
classname 'org.elasticsearch.test.simulatedlatencyrepo.LatencySimulatingRepositoryPlugin'
|
|
}
|
|
|
|
apply plugin: 'elasticsearch.internal-cluster-test'
|
|
apply plugin: 'elasticsearch.internal-es-plugin'
|
|
|
|
dependencies {
|
|
internalClusterTestImplementation project(path: ":x-pack:plugin:core")
|
|
internalClusterTestImplementation(testArtifact(project(":x-pack:plugin:core")))
|
|
internalClusterTestImplementation project(path: ":x-pack:plugin:searchable-snapshots")
|
|
internalClusterTestImplementation project(path: ":x-pack:plugin:blob-cache")
|
|
}
|