mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 18:35:25 +00:00
Currently, extracting the license-tools zip does not create a parent directory. This commit extracts out the `bin` and `lib` folders inside a parent directory `license-tools-{version}` Original commit: elastic/x-pack-elasticsearch@74960b6b1e
27 lines
553 B
Groovy
27 lines
553 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
dependencies {
|
|
compile project(':x-plugins:elasticsearch')
|
|
compile "org.elasticsearch:elasticsearch:${version}"
|
|
testCompile "org.elasticsearch.test:framework:${version}"
|
|
}
|
|
|
|
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
|