2017-06-20 14:03:53 -04:00
|
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
|
2017-09-21 09:58:52 -04:00
|
|
|
description = 'Shared test utilities for jdbc and cli protocol projects'
|
2017-06-20 14:03:53 -04:00
|
|
|
|
|
|
|
dependencies {
|
2017-06-22 18:21:55 -04:00
|
|
|
compile "junit:junit:${versions.junit}"
|
|
|
|
compile "org.hamcrest:hamcrest-all:${versions.hamcrest}"
|
2017-09-21 09:58:52 -04:00
|
|
|
compile "org.elasticsearch.test:framework:${versions.elasticsearch}"
|
2017-06-20 14:03:53 -04:00
|
|
|
}
|
2017-06-21 12:12:19 -04:00
|
|
|
|
2017-07-06 15:58:12 -04:00
|
|
|
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',
|
|
|
|
]
|
|
|
|
|
2017-06-21 12:12:19 -04:00
|
|
|
/* 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
|