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
This commit is contained in:
Ryan Ernst 2019-08-28 10:53:38 -07:00 committed by Ryan Ernst
parent f20969959f
commit 564b80303d
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ class RestIntegTestTask extends DefaultTask {
}
project.dependencies {
restSpec ClasspathUtils.isElasticsearchProject() ? project.project(':rest-api-spec') :
"org.elasticsearch.rest-api-spec:${VersionProperties.elasticsearch}"
"org.elasticsearch:rest-api-spec:${VersionProperties.elasticsearch}"
}
Task copyRestSpec = project.tasks.findByName('copyRestSpec')
if (copyRestSpec != null) {