Fix external integ test zip dep to expect a zip (#49813)

When external plugin authors use build-tools, their integ tests depend
on the integ-test-zip artifact. However, this dependency was broken in
7.5.0 by accidentally removing the `@zip` qualifier on the maven
dependency, which works around the fact the pom for the integ-test-zip
claims the artifact is a pom instead of zip packaging. This commit
restores the workaround of using `@zip` until the pom can be fixed.

closes #49787
This commit is contained in:
Ryan Ernst 2019-12-05 13:03:06 -08:00 committed by Ryan Ernst
parent 687c6648d9
commit 721a8b3d9c
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ public class DistributionDownloadPlugin implements Plugin<Project> {
}
if (distribution.getType() == Type.INTEG_TEST_ZIP) {
return "org.elasticsearch.distribution.integ-test-zip:elasticsearch:" + distribution.getVersion();
return "org.elasticsearch.distribution.integ-test-zip:elasticsearch:" + distribution.getVersion() + "@zip";
}