mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-26 06:46:10 +00:00
Clarify how to use our snapshot repository. Several folks were confused about this just now, including myself.
This commit is contained in:
parent
ff4ea4720a
commit
fb7c431d8d
@ -46,8 +46,27 @@ Central]. The minimum Java version required is `1.8`.
|
|||||||
The High Level REST Client is subject to the same release cycle as
|
The High Level REST Client is subject to the same release cycle as
|
||||||
Elasticsearch. Replace the version with the desired client version.
|
Elasticsearch. Replace the version with the desired client version.
|
||||||
|
|
||||||
If you are looking for a SNAPSHOT version, the Elastic Maven Snapshot repository is available
|
If you are looking for a SNAPSHOT version, you should add our snapshot repository to your Maven config:
|
||||||
at https://snapshots.elastic.co/maven/.
|
|
||||||
|
["source","xml",subs="attributes"]
|
||||||
|
--------------------------------------------------
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>es-snapshots</id>
|
||||||
|
<name>elasticsearch snapshot repo</name>
|
||||||
|
<url>https://snapshots.elastic.co/maven/</url>
|
||||||
|
</repository>
|
||||||
|
<repositories>
|
||||||
|
--------------------------------------------------
|
||||||
|
|
||||||
|
or in Gradle:
|
||||||
|
|
||||||
|
["source","groovy",subs="attributes"]
|
||||||
|
--------------------------------------------------
|
||||||
|
maven {
|
||||||
|
url "https://snapshots.elastic.co/maven/"
|
||||||
|
}
|
||||||
|
--------------------------------------------------
|
||||||
|
|
||||||
[[java-rest-high-getting-started-maven-maven]]
|
[[java-rest-high-getting-started-maven-maven]]
|
||||||
==== Maven configuration
|
==== Maven configuration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user