Merge pull request elastic/elasticsearch#3527 from rjernst/lose_one_xpack_jar
Build: Remove x-pack client jar Original commit: elastic/x-pack-elasticsearch@fb6b2eccf5
This commit is contained in:
commit
3bfebc75c1
|
@ -14,5 +14,5 @@ subprojects {
|
|||
approvedLicenses = ['Elasticsearch Confidential']
|
||||
additionalLicense 'ESCON', 'Elasticsearch Confidential', 'ELASTICSEARCH CONFIDENTIAL'
|
||||
}
|
||||
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-client:${version}": ':x-plugins:elasticsearch:x-pack' ]
|
||||
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-api:${version}": ':x-plugins:elasticsearch:x-pack' ]
|
||||
}
|
||||
|
|
|
@ -7,7 +7,9 @@ apply plugin: 'nebula.maven-scm'
|
|||
group = 'org.elasticsearch.client'
|
||||
|
||||
dependencies {
|
||||
compile "org.elasticsearch.plugin:x-pack-client:${version}"
|
||||
// this "api" dependency looks weird, but it is correct, as it contains
|
||||
// all of x-pack for now, and transport client will be going away in the future.
|
||||
compile "org.elasticsearch.plugin:x-pack-api:${version}"
|
||||
compile "org.elasticsearch.client:transport:${version}"
|
||||
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
||||
testCompile "junit:junit:${versions.junit}"
|
||||
|
|
|
@ -12,7 +12,6 @@ esplugin {
|
|||
name 'x-pack'
|
||||
description 'Elasticsearch Expanded Pack Plugin'
|
||||
classname 'org.elasticsearch.xpack.XPackPlugin'
|
||||
hasClientJar = true
|
||||
}
|
||||
|
||||
ext.versions = [
|
||||
|
|
Loading…
Reference in New Issue