18 lines
536 B
Groovy
18 lines
536 B
Groovy
description = 'Request and response objects shared by the jdbc driver and ' +
|
|
'its backend in :sql:server'
|
|
|
|
dependencies {
|
|
compile project(':x-pack-elasticsearch:sql:shared-proto')
|
|
testCompile project(':x-pack-elasticsearch:sql:test-utils')
|
|
}
|
|
|
|
forbiddenApisMain {
|
|
// does not depend on core, so only jdk and http signatures should be checked
|
|
signaturesURLs = [this.class.getResource('/forbidden/jdk-signatures.txt')]
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /shared-proto.*/, to: 'elasticsearch'
|
|
ignoreSha 'shared-proto'
|
|
}
|