Skip to content

Commit 056c2bd

Browse files
authored
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 8a337ce commit 056c2bd

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

+1-1
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)