@@ -19,8 +19,8 @@ Requirements:
19
19
https://github.com/eclipse-ee4j/yasson[Eclipse Yasson].
20
20
21
21
22
- The GA releases are hosted on Maven Central. Snapshot versions are hosted on
23
- https://snapshots.elastic.co/maven/[Elastic's Maven snapshot repository] .
22
+ Releases are hosted on https://search.maven.org/search?q=g:co.elastic.clients[ Maven Central]. If you are looking for
23
+ a SNAPSHOT version, the Elastic Maven Snapshot repository is available at https://snapshots.elastic.co/maven/.
24
24
25
25
26
26
[discrete]
@@ -29,16 +29,8 @@ https://snapshots.elastic.co/maven/[Elastic's Maven snapshot repository].
29
29
30
30
["source","groovy",subs="attributes"]
31
31
--------------------------------------------------
32
- repositories {
33
- mavenCentral()
34
- maven {
35
- name = "Elastic-Snapshots"
36
- url = uri("https://snapshots.elastic.co/maven")
37
- }
38
- }
39
-
40
32
dependencies {
41
- implementation 'co.elastic.clients:elasticsearch-java:7.15.0-SNAPSHOT '
33
+ implementation 'co.elastic.clients:elasticsearch-java:7.15.0'
42
34
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
43
35
}
44
36
--------------------------------------------------
@@ -54,16 +46,6 @@ dependencies:
54
46
--------------------------------------------------
55
47
<project>
56
48
57
- <repositories>
58
- <repository>
59
- <id>Elastic-Snapshots</id>
60
- <url>https://snapshots.elastic.co/maven</url>
61
- <snapshots>
62
- <enabled>true</enabled>
63
- </snapshots>
64
- </repository>
65
- </repositories>
66
-
67
49
<dependencies>
68
50
<dependency>
69
51
<groupId>co.elastic.clients</groupId>
@@ -91,4 +73,4 @@ from the {es} Specification that is also still a work in progress.
91
73
The {es} Java client is forward compatible; meaning that the client supports
92
74
communicating with greater or equal minor versions of {es}. {es} language
93
75
clients are only backwards compatible with default distributions and without
94
- guarantees made.
76
+ guarantees made.
0 commit comments