44 lines
1.3 KiB
Groovy
44 lines
1.3 KiB
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
description = 'Shared test utilities for jdbc and cli projects'
|
|
|
|
dependencies {
|
|
compile "org.elasticsearch.client:transport:${version}"
|
|
compile "junit:junit:${versions.junit}"
|
|
compile "org.hamcrest:hamcrest-all:${versions.hamcrest}"
|
|
}
|
|
|
|
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
|
|
|
|
// Allow for com.sun.net.httpserver.* usage for testing
|
|
eclipse {
|
|
classpath.file {
|
|
whenMerged { cp ->
|
|
def con = entries.find { e ->
|
|
e.kind == "con" && e.toString().contains("org.eclipse.jdt.launching.JRE_CONTAINER")
|
|
}
|
|
con.accessRules.add(new org.gradle.plugins.ide.eclipse.model.AccessRule(
|
|
"accessible", "com/sun/net/httpserver/*"))
|
|
}
|
|
}
|
|
}
|
|
forbiddenApisMain {
|
|
bundledSignatures -= 'jdk-non-portable'
|
|
bundledSignatures += 'jdk-internal'
|
|
}
|