DATAES-610 - Clarify inclusion of rc and snapshot builds in readme.adoc.

Original PR: #294
This commit is contained in:
Peter-Josef Meisch 2019-07-15 20:48:29 +02:00 committed by GitHub
parent eec55e273e
commit 4816902f9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,10 +115,10 @@ Add the Maven dependency:
**Compatibility Matrix**
[cols="^,^"]
[cols="^,^,"]
|===
|Spring Data Elasticsearch | Elasticsearch
|3.2.x |6.8.1
|Spring Data Elasticsearch | Elasticsearch |
| _3.2.x_ |_6.8.1_ | _not yet released_
|3.1.x |6.2.2
|3.0.x |5.5.0
|2.1.x |2.4.0
@ -126,7 +126,24 @@ Add the Maven dependency:
|1.3.x |1.5.2
|===
If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.
To use the Release candidate versions of the upcoming major version, use our Maven milestone repository and declare the appropriate dependency version:
[source,xml]
----
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-elasticsearch</artifactId>
<version>${version}.RCx</version> <!-- x being 1, 2, ... -->
</dependency>
<repository>
<id>spring-libs-snapshot</id>
<name>Spring Snapshot Repository</name>
<url>https://repo.spring.io/libs-milestone</url>
</repository>
----
If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version:
[source,xml]
----