Skip to content

Commit 564b803

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 f209699 commit 564b803

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
@@ -234,7 +234,7 @@ class RestIntegTestTask extends DefaultTask {
234234
}
235235
project.dependencies {
236236
restSpec ClasspathUtils.isElasticsearchProject() ? project.project(':rest-api-spec') :
237-
"org.elasticsearch.rest-api-spec:${VersionProperties.elasticsearch}"
237+
"org.elasticsearch:rest-api-spec:${VersionProperties.elasticsearch}"
238238
}
239239
Task copyRestSpec = project.tasks.findByName('copyRestSpec')
240240
if (copyRestSpec != null) {

0 commit comments

Comments
 (0)