Skip to content

Commit

Permalink
Fix rest-api-spec dep for external plugins (#45949)
Browse files Browse the repository at this point in the history
This commit fixes the maven coordinates for the rest-api-spec jar. It
was accidentally by #45107.

closes #45891
  • Loading branch information
rjernst committed Aug 28, 2019
1 parent 3752a87 commit 0e37fef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,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) {
Expand Down

0 comments on commit 0e37fef

Please sign in to comment.