From 78541dfb2a9c6c16a1be5d0944c8925e2aa43197 Mon Sep 17 00:00:00 2001 From: David Pilato Date: Fri, 15 Feb 2019 15:55:41 +0100 Subject: [PATCH] Update Lucene snapshot repo for 7.0.0-beta1 (#38946) This commit updates the documentation for the Lucene snapshot repo. --- docs/java-rest/high-level/getting-started.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/java-rest/high-level/getting-started.asciidoc b/docs/java-rest/high-level/getting-started.asciidoc index 685122771392c..de337f7084057 100644 --- a/docs/java-rest/high-level/getting-started.asciidoc +++ b/docs/java-rest/high-level/getting-started.asciidoc @@ -83,7 +83,7 @@ dependencies { The very first releases of any major version (like a beta), might have been built on top of a Lucene Snapshot version. In such a case you will be unable to resolve the Lucene dependencies of the client. -For example, if you want to use the `7.0.0-alpha2` version which depends on Lucene `8.0.0-snapshot-774e9aefbc`, you must +For example, if you want to use the `7.0.0-beta1` version which depends on Lucene `8.0.0-snapshot-83f9835`, you must define the following repository. For Maven: @@ -93,7 +93,7 @@ For Maven: elastic-lucene-snapshots Elastic Lucene Snapshots - http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/774e9aefbc + http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835 true false @@ -104,7 +104,7 @@ For Gradle: ["source","groovy",subs="attributes"] -------------------------------------------------- maven { - url 'http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/774e9aefbc' + url 'http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835' } --------------------------------------------------