Skip to content

Commit 1a349af

Browse files
authored
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
1 parent e191c94 commit 1a349af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/org/elasticsearch/gradle/DistributionDownloadPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ private Object dependencyNotation(Project project, ElasticsearchDistribution dis
212212
}
213213

214214
if (distribution.getType() == Type.INTEG_TEST_ZIP) {
215-
return "org.elasticsearch.distribution.integ-test-zip:elasticsearch:" + distribution.getVersion();
215+
return "org.elasticsearch.distribution.integ-test-zip:elasticsearch:" + distribution.getVersion() + "@zip";
216216
}
217217

218218

0 commit comments

Comments
 (0)