OpenSearch/sql/test-utils/build.gradle

26 lines
841 B
Groovy

apply plugin: 'elasticsearch.build'
description = 'Shared test utilities for jdbc and cli protocol projects'
dependencies {
compile "junit:junit:${versions.junit}"
compile "org.hamcrest:hamcrest-all:${versions.hamcrest}"
compile "org.elasticsearch.test:framework:${versions.elasticsearch}"
}
thirdPartyAudit.excludes = [
// Referneced by the test:framework but not used
'org.apache.tools.ant.BuildException',
'org.apache.tools.ant.DirectoryScanner',
'org.apache.tools.ant.Task',
'org.apache.tools.ant.types.FileSet',
'org.easymock.EasyMock',
'org.easymock.IArgumentMatcher',
'org.jmock.core.Constraint',
]
/* Elasticsearch traditionally disables this for test utilities because it is
* hard to configure and (hopefully) much less important for tests than
* production code. */
dependencyLicenses.enabled = false