blob: a7c9cee44d8ae86ab0db772f671eaf09b5f76d08 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.
*/
plugins { id 'org.apache.beam.module' }
applyJavaNature(
publish: false,
archivesBaseName: 'beam-sdks-java-io-elasticsearch-tests-7'
)
provideIntegrationTestingDependencies()
enableJavaPerformanceTesting()
description = "Apache Beam :: SDKs :: Java :: IO :: Elasticsearch-Tests :: 7.x"
ext.summary = "Tests of ElasticsearchIO on Elasticsearch 7.x"
def elastic_search_version = "7.17.22"
dependencies {
testImplementation project(path: ":sdks:java:io:elasticsearch-tests:elasticsearch-tests-common")
testImplementation library.java.testcontainers_elasticsearch
testImplementation project(path: ":sdks:java:core", configuration: "shadow")
testImplementation project(":sdks:java:io:elasticsearch")
testImplementation library.java.slf4j_api
testImplementation library.java.hamcrest
testImplementation library.java.junit
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:$elastic_search_version"
testRuntimeOnly library.java.log4j2_api
testRuntimeOnly library.java.log4j2_core
testRuntimeOnly library.java.slf4j_jdk14
testRuntimeOnly project(path: ":runners:direct-java", configuration: "shadow")
}