Mark Vieira e44b8b1e2e
[Backport] Remove dependency substitutions 7.x (#42866)
* Remove unnecessary usage of Gradle dependency substitution rules (#42773)

(cherry picked from commit 12d583dbf6f7d44f00aa365e34fc7e937c3c61f7)
2019-06-04 13:50:23 -07:00

27 lines
502 B
Groovy

apply plugin: 'elasticsearch.build'
dependencies {
compile project(':x-pack:plugin:core')
compile project(':server')
testCompile project(':test:framework')
}
project.forbiddenPatterns {
exclude '**/*.key'
}
dependencyLicenses.enabled = false
task buildZip(type: Zip, dependsOn: jar) {
String parentDir = "license-tools-${version}"
into(parentDir + '/lib') {
from jar
from configurations.runtime
}
into(parentDir + '/bin') {
from 'bin'
}
}
assemble.dependsOn buildZip