Remove the shadow plugin apply in the rest client (#25921)

The low level rest client does not need the shadow plugin applied, it
only needs the plugin jar in the classpath, in order to create a
ShadowJar task.

Relates #25208
This commit is contained in:
Michael Basnight 2017-07-27 09:22:18 -05:00 committed by GitHub
parent efd79882a2
commit 2c271f0f22
1 changed files with 7 additions and 2 deletions

View File

@ -35,8 +35,13 @@ import org.elasticsearch.gradle.precommit.PrecommitTasks
* 2) The *actual* jar that will be used by clients. This has no classifier, contains the rest client src and
* `org.elasticsearch.client`. This jar is the only actual output artifact of this job.
*/
plugins {
id "com.github.johnrengelman.shadow" version "2.0.1"
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
apply plugin: 'elasticsearch.build'