mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 05:28:34 +00:00
* Rename folder x-pack-core -> core The jar remains 'x-pack-core-*.jar' * Put group in top-level build.gradle instead of plugin/core/build.gradle Original commit: elastic/x-pack-elasticsearch@b23452fa55
35 lines
939 B
Groovy
35 lines
939 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
dependencies {
|
|
}
|
|
|
|
archivesBaseName = 'x-pack-monitoring'
|
|
|
|
// TODO: enable this once we have tests
|
|
test.enabled=false
|
|
licenseHeaders.enabled = false
|
|
|
|
dependencies {
|
|
provided "org.elasticsearch:elasticsearch:${version}"
|
|
|
|
compile "org.elasticsearch.plugin:x-pack-core:${version}"
|
|
|
|
// monitoring deps
|
|
compile "org.elasticsearch.client:elasticsearch-rest-client:${version}"
|
|
compile "org.elasticsearch.client:elasticsearch-rest-client-sniffer:${version}"
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /elasticsearch-rest-client.*/, to: 'elasticsearch'
|
|
mapping from: /http.*/, to: 'httpclient' // pulled in by rest client
|
|
mapping from: /commons-.*/, to: 'commons' // pulled in by rest client
|
|
ignoreSha 'x-pack-core'
|
|
ignoreSha 'elasticsearch-rest-client'
|
|
ignoreSha 'transport-netty4'
|
|
ignoreSha 'elasticsearch-rest-client-sniffer'
|
|
}
|
|
|
|
parent.bundlePlugin {
|
|
from jar
|
|
}
|