blob: 57888ed76f35d0e8902b9ed6aff515c706976f19 [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(
automaticModuleName: 'org.apache.beam.it.datadog',
)
description = "Apache Beam :: IT :: Datadog"
ext.summary = "Integration test utilities for Datadog."
dependencies {
implementation project(path: ":it:common")
implementation project(path: ":it:testcontainers")
implementation project(path: ":it:truthmatchers")
implementation project(path: ":it:conditions")
implementation "org.testcontainers:mockserver:1.19.7"
implementation "org.testcontainers:testcontainers:1.19.7"
implementation "org.mock-server:mockserver-client-java:5.10.0"
implementation "org.mock-server:mockserver-core:5.10.0"
implementation "org.apache.httpcomponents:httpclient:4.5.13"
implementation "org.apache.httpcomponents:httpcore:4.4.14"
implementation library.java.google_code_gson
implementation library.java.vendored_guava_32_1_2_jre
implementation "org.slf4j:slf4j-api:2.0.16"
compileOnly library.java.auto_value_annotations
testImplementation(library.java.truth) {
exclude group: 'com.google.guava', module: 'guava'
}
testImplementation library.java.junit
testImplementation library.java.mockito_inline
}