Skip to content

Commit 5540ad6

Browse files
committed
Fix rest-api-spec dep for external plugins
This commit fixes the maven coordinates for the rest-api-spec jar. It was accidentally by elastic#45107. closes elastic#45891
1 parent c9d397f commit 5540ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/groovy/org/elasticsearch/gradle/test/RestIntegTestTask.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ class RestIntegTestTask extends DefaultTask {
236236
}
237237
project.dependencies {
238238
restSpec ClasspathUtils.isElasticsearchProject() ? project.project(':rest-api-spec') :
239-
"org.elasticsearch.rest-api-spec:${VersionProperties.elasticsearch}"
239+
"org.elasticsearch:rest-api-spec:${VersionProperties.elasticsearch}"
240240
}
241241
Task copyRestSpec = project.tasks.findByName('copyRestSpec')
242242
if (copyRestSpec != null) {

0 commit comments

Comments
 (0)