Skip to content

Commit 0e37fef

Browse files
committed
Fix rest-api-spec dep for external plugins (#45949)
This commit fixes the maven coordinates for the rest-api-spec jar. It was accidentally by #45107. closes #45891
1 parent 3752a87 commit 0e37fef

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
@@ -252,7 +252,7 @@ class RestIntegTestTask extends DefaultTask {
252252
}
253253
project.dependencies {
254254
restSpec ClasspathUtils.isElasticsearchProject() ? project.project(':rest-api-spec') :
255-
"org.elasticsearch.rest-api-spec:${VersionProperties.elasticsearch}"
255+
"org.elasticsearch:rest-api-spec:${VersionProperties.elasticsearch}"
256256
}
257257
Task copyRestSpec = project.tasks.findByName('copyRestSpec')
258258
if (copyRestSpec != null) {

0 commit comments

Comments
 (0)