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 }