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:
parent
efd79882a2
commit
2c271f0f22
|
@ -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
|
* 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.
|
* `org.elasticsearch.client`. This jar is the only actual output artifact of this job.
|
||||||
*/
|
*/
|
||||||
plugins {
|
buildscript {
|
||||||
id "com.github.johnrengelman.shadow" version "2.0.1"
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'elasticsearch.build'
|
apply plugin: 'elasticsearch.build'
|
||||||
|
|
Loading…
Reference in New Issue